diff --git a/AlgebraicDataflowArchitectureModel/src/generators/JavaImplementationVisitor.java b/AlgebraicDataflowArchitectureModel/src/generators/JavaImplementationVisitor.java index 1b5ccb2..46cd543 100644 --- a/AlgebraicDataflowArchitectureModel/src/generators/JavaImplementationVisitor.java +++ b/AlgebraicDataflowArchitectureModel/src/generators/JavaImplementationVisitor.java @@ -176,14 +176,6 @@ public String visit(JsonTerm jsonTerm, String[] sideEffects) { String temp = "temp_json" + jsonCount; jsonCount++; - -// code.ast.Type mapType = new code.ast.SimpleType("Map"); -// code.ast.Type stringType = new code.ast.SimpleType("String"); -// code.ast.Type objectType = new code.ast.SimpleType("Object"); -// -// code.ast.Type type = new code.ast.ParameterizedType(mapType, List.of(stringType, objectType)); -// code.ast.VariableDeclarationStatement statement = new code.ast.VariableDeclarationStatement(new Type("Map", type.toString()), temp); -// String impl = ""; impl += "Map " + temp + " = new HashMap<>();\n";