Commit b53302ec authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* fixed issue with stopwatches

parent 221888cb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -166,6 +166,7 @@ public class T3Q {
		//TODO: spaces and special characters in paths?
		JsonSchemaBridge bridge = new JsonSchemaBridge();
		if (!asn1Paths.isEmpty()) {
			Stopwatch stopwatch = Stopwatch.createUnstarted();
			stopwatch.start();
			System.out.println("Converting "+asn1Paths+" ASN.1 files to JSON Schema...");
			bridge.convertASN1toJSONSchema(activeProfile.getTitanCompilerPath(), asn1Paths, activeProfile.getJsonSchemaPath()+schemaFile);
@@ -180,6 +181,7 @@ public class T3Q {
		JsonSchemaBridge bridge = new JsonSchemaBridge();
		//TODO: handle other schemas? -> need to add result in input files..
		ArrayList<String> processedSchemas = new ArrayList<>();
		Stopwatch stopwatch = Stopwatch.createUnstarted();
		for (String path : inputPaths) {
			File file = new File(path);
			if (file.isFile()) {