Skip to content

Commit 9cbb90e

Browse files
committed
fix: regression NPE creating new app.json
1 parent 5984473 commit 9cbb90e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codejive/jpm/json/AppInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* from/to files.
1717
*/
1818
public class AppInfo {
19-
private Map<String, Object> json;
19+
private Map<String, Object> json = new TreeMap<>();
2020
public Map<String, String> dependencies = new TreeMap<>();
2121

2222
/** The official name of the app.json file. */

0 commit comments

Comments
 (0)