Skip to content

Commit

Permalink
fix: regression NPE creating new app.json
Browse files Browse the repository at this point in the history
  • Loading branch information
quintesse committed Jul 12, 2024
1 parent 5984473 commit 9cbb90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/codejive/jpm/json/AppInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* from/to files.
*/
public class AppInfo {
private Map<String, Object> json;
private Map<String, Object> json = new TreeMap<>();
public Map<String, String> dependencies = new TreeMap<>();

/** The official name of the app.json file. */
Expand Down

0 comments on commit 9cbb90e

Please sign in to comment.