mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Undo reliance on otherwise dead class
This commit is contained in:
@@ -6,6 +6,8 @@ import java.util.regex.Pattern;
|
||||
import processing.app.Base;
|
||||
|
||||
public class AVD {
|
||||
static final int DEFAULT_WIDTH = 320;
|
||||
static final int DEFAULT_HEIGHT = 480;
|
||||
|
||||
/** Name of this avd. */
|
||||
public final String name;
|
||||
|
||||
@@ -43,8 +43,8 @@ class Build {
|
||||
}
|
||||
|
||||
protected int[] getSketchSize() {
|
||||
int wide = Device.DEFAULT_WIDTH;
|
||||
int high = Device.DEFAULT_HEIGHT;
|
||||
int wide = AVD.DEFAULT_WIDTH;
|
||||
int high = AVD.DEFAULT_HEIGHT;
|
||||
// String renderer = "";
|
||||
|
||||
// This matches against any uses of the size() function, whether numbers
|
||||
|
||||
Reference in New Issue
Block a user