Skip to content

Commit e568025

Browse files
committed
don't use getAndroidImports() in preprocessor
1 parent 67ad753 commit e568025

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/processing/mode/android/AndroidPreprocessor.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ protected int writeImports(final PrintWriter out,
206206
out.println();
207207
int count = 2;
208208
count += super.writeImports(out, programImports, codeFolderImports);
209-
count += writeImportList(out, getAndroidImports());
209+
// count += writeImportList(out, getAndroidImports());
210210
return count;
211211
}
212212

@@ -303,11 +303,12 @@ public String[] getDefaultImports() {
303303
"android.app.Fragment"
304304
};
305305
}
306-
*/
306+
307307
308308
public String[] getAndroidImports() {
309309
return new String[] {
310310
"processing.android.ServiceEngine"
311311
};
312312
}
313+
*/
313314
}

0 commit comments

Comments
 (0)