Skip to content

Commit 6beaa75

Browse files
committed
warnings and todo notes
1 parent c0f67a6 commit 6beaa75

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

core/src/processing/data/JSONObject.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ of this software and associated documentation files (the "Software"), to deal
5050

5151
import processing.core.PApplet;
5252

53+
5354
/**
5455
* A JSONObject is an unordered collection of name/value pairs. Its external
5556
* form is a string wrapped in curly braces with colons between the names and
@@ -110,6 +111,7 @@ of this software and associated documentation files (the "Software"), to deal
110111
* @see PApplet#saveJSONObject(JSONObject, String)
111112
* @see PApplet#saveJSONArray(JSONArray, String)
112113
*/
114+
@SuppressWarnings("rawtypes")
113115
public class JSONObject {
114116
/**
115117
* The maximum number of keys in the key pool.

src/processing/mode/android/AndroidSDK.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public static ProcessResult runADB(final String... cmd)
312312
}
313313
// printing this here to see if anyone else is killing the adb server
314314
if (processing.app.Base.DEBUG) {
315-
PApplet.println(adbCmd);
315+
PApplet.printArray(adbCmd);
316316
}
317317
// try {
318318
ProcessResult adbResult = new ProcessHelper(adbCmd).execute();

todo.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ X https://github.com/processing/processing-android/pull/42
1212

1313
_ figure out how to build from Eclipse JDI so we can remove tools.jar and javac
1414
_ https://github.com/processing/processing/issues/1840
15+
_ figure out Android build w/o javac so we can remove tools.jar and javac
16+
_ also to the p5 repo with just a JRE
17+
_ remove initRequirements from Base (no longer need JDI)
18+
_ move this into Android mode?
1519

1620
_ temporary files (for sketches and logs) are not deleted
1721
o http://code.google.com/p/processing/issues/detail?id=562

0 commit comments

Comments
 (0)