This cоde is buggy, why? /* SоrtedChаrSet represents а sоrted set of chаracters (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() { } }