Clean binary inspector
This commit is contained in:
parent
a7a59e3f07
commit
35432e6080
1 changed files with 6 additions and 2 deletions
|
@ -55,12 +55,16 @@ public class BinaryInspector {
|
|||
BinaryInspector in = new BinaryInspector();
|
||||
in.inspector(args);
|
||||
// test cases show info
|
||||
in.inspector(new String[]{
|
||||
if(args.length == 1 && "test".equals(args[0])) {
|
||||
in.inspector(new String[]{
|
||||
//"-vpoi",
|
||||
"-vmap", "-vmapobjects",
|
||||
// "-vmap", "-vmapobjects",
|
||||
//"-vstreets",
|
||||
//"-bbox=4,55,7,50",
|
||||
"/home/victor/projects/osmand/osm-gen/Map.obf"});
|
||||
} else {
|
||||
in.inspector(args);
|
||||
}
|
||||
}
|
||||
|
||||
private void printToFile(String s) throws IOException {
|
||||
|
|
Loading…
Reference in a new issue