1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

fixes comments

This commit is contained in:
John J. Aylward 2017-05-31 18:13:40 -04:00
parent 4f5bf16676
commit f76fbe7005

View file

@ -863,7 +863,7 @@ public class JSONObject {
* *
* @see Map#entrySet() * @see Map#entrySet()
* *
* @return A keySet. * @return An Entry Set
*/ */
protected Set<Entry<String, Object>> entrySet() { protected Set<Entry<String, Object>> entrySet() {
return this.map.entrySet(); return this.map.entrySet();
@ -2218,8 +2218,7 @@ public class JSONObject {
} }
/** /**
* Write the contents of the JSONObject as JSON text to a writer. For * Write the contents of the JSONObject as JSON text to a writer.
* compactness, no whitespace is added.
* <p> * <p>
* Warning: This method assumes that the data structure is acyclical. * Warning: This method assumes that the data structure is acyclical.
* *