This commit is contained in:
Grahame Grieve 2022-10-27 07:39:30 +11:00
parent cc38567c93
commit a1a27b359d
1 changed files with 4 additions and 0 deletions

View File

@ -179,4 +179,8 @@ public class JsonUtilities {
return odt.toInstant();
}
}
public static void setProperty(JsonObject json, String name, String value) {
json.addProperty(name, value);
}
}