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 or empty // && str should not have duplicates public SortedCharSet(char c) { str = new StringBuilder(); } }