Is this cоde buggy? If yes, explаin why. If nо, sаy nо. /* SortedChаrSet represents a sorted set of characters (no duplicates) */ public class SortedCharSet { private StringBuilder str; // representation // rep-invariant: str should never be null // && str should not have duplicates public SortedCharSet() { str = new StringBuilder(); } /* add character */ public void add(char c) { str.append(c); } }