()
| 29 | } |
| 30 | |
| 31 | public @NotNull JsonNode read() throws IOException { |
| 32 | JsonNode obj = readNode(); |
| 33 | if (obj == null) { |
| 34 | obj = new JsonNode("{}"); |
| 35 | } |
| 36 | return obj; |
| 37 | } |
| 38 | |
| 39 | public void delete() throws IOException { |
| 40 | File parent = file.getParentFile(); |
no test coverage detected