Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5fe899f7636887ca75606353445495e972346895 (plain) (blame)
1
2
3
4
5
6
7
package java.lang;

public class String implements CharSequence {
	public int length() { return 0; }
	public boolean endsWith(String postfix) { return false; }
	public String substring(int start) { return this; }
}

Back to the top