Fixed a compiler error.

This commit is contained in:
Krazy
2014-08-14 02:45:30 +00:00
parent 545666f7c9
commit b7fba9d64c

View File

@@ -80,6 +80,11 @@ public class SFilterUtil {
public String next() {
return string.charAt(index++) + "";
}
@Override
public void remove() {
throw new UnsupportedOperationException("remove");
}
public String lookAhead() {
if (hasNext()) {