Skip to content

Commit f550d83

Browse files
committed
Remove .gradle and .idea from repository and update .gitignore, fixed Parser
1 parent f3c46f2 commit f550d83

File tree

7 files changed

+1
-1
lines changed

7 files changed

+1
-1
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
68 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

app/src/main/java/hexlet/code/Parser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ public static Map<String, Object> parseFromString(String content) throws IOExcep
1919
objectMapper = new ObjectMapper(new YAMLFactory()); // YAML
2020
}
2121

22-
return objectMapper.readValue(content, new TypeReference<Map<String, Object>>() {});
22+
return objectMapper.readValue(content, new TypeReference<Map<String, Object>>() { });
2323
}
2424
}

0 commit comments

Comments
 (0)