Tweaked code indentation and formatting to match existing style

This commit is contained in:
Eric Scharff
2008-07-03 10:49:08 -06:00
parent befdfa4e9e
commit bba4f75c2f
7 changed files with 115 additions and 156 deletions

View File

@ -11,11 +11,11 @@
package java.lang;
public interface CharSequence {
public char charAt(int index);
int length();
CharSequence subSequence(int start, int end);
String toString();
public char charAt(int index);
int length();
CharSequence subSequence(int start, int end);
String toString();
}