We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f685491 commit 39471f8Copy full SHA for 39471f8
2 files changed
core/src/processing/data/IntDict.java
@@ -666,7 +666,7 @@ public void write(PrintWriter writer) {
666
public String toJSON() {
667
StringList items = new StringList();
668
for (int i = 0; i < size(); i++) {
669
- items.append("\"" + JSONObject.quote(keys[i]) + "\": " + values[i]);
+ items.append(JSONObject.quote(keys[i])+ ": " + values[i]);
670
}
671
return "{ " + items.join(", ") + " }";
672
core/todo.txt
@@ -1,7 +1,11 @@
1
0254 (3.2.2 or 3.3)
2
+X fix quoting problem in IntDict.toJSON()
3
X add getRowMap() function
4
_ do we want rows() to not be transient?
5
6
+andres
7
+X Automatic handling of screen FBOs breaks readPixels() for user-provided FBO
8
+X https://github.com/processing/processing/issues/4643
9
10
started
11
X add toJSON() method to IntDict
0 commit comments