This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StringBuilderWrapper implements CharSequence { | |
private StringBuilder sb; | |
public StringBuilderWrapper(String s) { | |
this.sb = new StringBuilder(s); | |
} | |
public int length() { | |
return sb.length(); |