Skip to content

Commit aaf127c

Browse files
committed
Build fix
1 parent b4044f4 commit aaf127c

File tree

1 file changed

+1
-1
lines changed
  • portable/comp-transfer/src/main/java/org/bosik/diacomp/core/persistence/parsers

1 file changed

+1
-1
lines changed

portable/comp-transfer/src/main/java/org/bosik/diacomp/core/persistence/parsers/Parser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public JSONArray writeAll(Iterable<? extends T> objects) throws JSONException
9090
return array;
9191
}
9292

93-
protected static Long getOptionalLong(JSONObject json, String key)
93+
protected static Long getOptionalLong(JSONObject json, String key) throws JSONException
9494
{
9595
return !json.isNull(key)
9696
? json.getLong(key)

0 commit comments

Comments
 (0)