Skip to content

Commit 142faa4

Browse files
committed
Fix comment in Json to Java
1 parent df49278 commit 142faa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JsonClassGeneratorLib/CodeWriters/JavaCodeWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void WriteDeserializationComment(IJsonClassGeneratorConfig config, String
174174
sw.AppendLine("// import com.fasterxml.jackson.databind.ObjectMapper; // version 2.11.1");
175175
sw.AppendLine("// import com.fasterxml.jackson.annotation.JsonProperty; // version 2.11.1");
176176
sw.AppendLine("/* ObjectMapper om = new ObjectMapper();");
177-
sw.AppendLine("Root root = om.readValue(myJsonString), Root.class); */");
177+
sw.AppendLine("Root root = om.readValue(myJsonString, Root.class); */");
178178
}
179179
}
180180
}

0 commit comments

Comments
 (0)