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

a comment added to explain the use of HashMap

to avoid misconception of contributors about using HashMap to implement
a JSON object as a unordered collection by the definition
This commit is contained in:
Tomas Tulka 2017-06-08 08:03:14 +02:00
parent ef7a5e40be
commit d0f5607998

View file

@ -164,6 +164,7 @@ public class JSONObject {
* Construct an empty JSONObject. * Construct an empty JSONObject.
*/ */
public JSONObject() { public JSONObject() {
// HashMap is used on purpose to ensure that elements are unordered
this.map = new HashMap<String, Object>(); this.map = new HashMap<String, Object>();
} }