Skip to content

Commit c64c971

Browse files
committed
move declaration of static members before creation of defaultAVD
1 parent 19f24d1 commit c64c971

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/processing/mode/android/AVD.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ public class AVD {
4444
/** "android-7" or "Google Inc.:Google APIs:7" */
4545
protected String target;
4646

47-
/** Default virtual device used by Processing. */
48-
static public final AVD defaultAVD =
49-
new AVD("Processing-0" + Base.getRevision(),
50-
"android-" + AndroidBuild.sdkVersion);
51-
// "Google Inc.:Google APIs:" + AndroidBuild.sdkVersion);
52-
5347
static ArrayList<String> avdList;
5448
static ArrayList<String> badList;
5549
// static ArrayList<String> skinList;
5650

5751
private String[] preferredAbi = new String[50];
5852
private static ArrayList<String> abiList = new ArrayList<>();
53+
54+
/** Default virtual device used by Processing. */
55+
static public final AVD defaultAVD =
56+
new AVD("Processing-0" + Base.getRevision(),
57+
"android-" + AndroidBuild.sdkVersion);
58+
// "Google Inc.:Google APIs:" + AndroidBuild.sdkVersion);
5959

6060
public AVD(final String name, final String target) {
6161
this.name = name;

0 commit comments

Comments
 (0)