Skip to content

Commit

Permalink
Adding support for arrays
Browse files Browse the repository at this point in the history
Autocommit Wed Jan 14 13:53:13 EST 2015
  • Loading branch information
mxro committed Jan 14, 2015
1 parent 61a82f8 commit dfe19b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import de.mxro.async.properties.values.PropertyValue;
import de.mxro.json.HasJSON;
import de.mxro.json.JSON;
import de.mxro.json.internal.JSONImpl;
import de.mxro.json.JSONObject;

/**
*
Expand Down Expand Up @@ -78,7 +78,7 @@ public String toString() {

@Override
public JSON getJSON() {
final JSON o = new JSONImpl();
final JSONObject o = JSON.create();

for (final Entry<String, Object> e : props.entrySet()) {
Object value;
Expand Down

0 comments on commit dfe19b9

Please sign in to comment.