Commit e280eaa4 authored by Leonard Faecke's avatar Leonard Faecke
Browse files

* Removed unneccesary output

parent 54564c9c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -280,8 +280,9 @@ public class TTCN3ResourceProvider {
			Map<String, Long> unified = unifyMaps(maps);
			
			System.out.println("Total usage analysis output:");
			printOutput(unified);
			saveJson(unified, "total.json");
			//printOutput(unified);
			
			saveJson(unified, new File(paths.get(0)).getName() + ".json");

		} catch (InterruptedException | ExecutionException e) {
			// TODO Auto-generated catch block
@@ -482,7 +483,7 @@ public class TTCN3ResourceProvider {
				}
			}
			String jsonString = gson.toJson(json);
			System.out.println("Serialized data size: " + jsonString.length());
			//System.out.println("Serialized data size: " + jsonString.length());
			BufferedWriter writer = new BufferedWriter(new FileWriter(new File(dir, name)), dataLimit);
			writer.write(jsonString);
			writer.flush();