Changed the name of FileFinder to FileUtil

This commit is contained in:
Ziver Koc 2010-07-01 16:22:02 +00:00
parent a9bc9997ca
commit ce83415d1c
19 changed files with 315 additions and 59 deletions

View file

@ -3,7 +3,7 @@ package zutil.parser.json;
import zutil.MultiPrintStream;
import zutil.parser.json.JSONNode.JSONType;
public class JSONParser {
public class JSONParser{
private String json;
private int index;
@ -159,4 +159,6 @@ public class JSONParser {
System.out.println("Return");
return root;
}
public void close() {}
}