Skip to content

Commit f4927af

Browse files
committed
Resolve merge conflicts2
1 parent 7acad4f commit f4927af

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static Map<String, Object> parseFromResources(String fileName) throws IOE
3434
throw new RuntimeException("Invalid file path: " + fileName, e);
3535
}
3636

37-
return objectMapper.readValue(path.toFile(), new TypeReference<Map<String, Object>>() {});
37+
return objectMapper.readValue(path.toFile(), new TypeReference<Map<String, Object>>() { });
3838
}
3939

4040
// Используется из CLI — напрямую с файловой системы
@@ -49,7 +49,7 @@ public static Map<String, Object> parse(String filePath) throws IOException {
4949
throw new IllegalArgumentException("Unsupported file format: " + filePath);
5050
}
5151

52-
return objectMapper.readValue(new File(filePath), new TypeReference<Map<String, Object>>() {});
52+
return objectMapper.readValue(new File(filePath), new TypeReference<Map<String, Object>>() { });
5353
}
5454
}
5555

0 commit comments

Comments
 (0)