Azure / Azure/azure-documentdb-java
new Document(JSONObject) constructor - yields empty results
Aperta
bug
- Lingua principale
- Java
- Stelle
- 51
- Fork
- 52
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
When running
new Document(JSONObject) -> the document received is empty.
Running new Document(JSONObject.toString()) - works fine.
The root issue is that for some reason new JSONObject(JSONObject) returns an empty JSONObject (and that's what happens in JSONSerializable's constructor):
``
protected JsonSerializable(JSONObject jsonObject) {
this.propertyBag = new JSONObject(jsonObject);
}
``
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.