Skip to content

Commit b7a5507

Browse files
committed
changed title
1 parent c41455d commit b7a5507

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/processing/mode/android/AndroidSDK.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import processing.app.exec.ProcessHelper;
66
import processing.app.exec.ProcessResult;
77
import processing.core.PApplet;
8-
import processing.mode.android.AndroidSDK.CancelException;
98

109
import javax.swing.*;
1110
import java.awt.*;

src/processing/mode/android/SDKDownloader.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import processing.app.Preferences;
1111
import processing.app.ui.Toolkit;
1212
import processing.core.PApplet;
13-
import processing.mode.android.AndroidSDK.CancelException;
1413

1514
import javax.swing.*;
1615
import javax.swing.border.EmptyBorder;
@@ -33,13 +32,12 @@
3332

3433
@SuppressWarnings("serial")
3534
public class SDKDownloader extends JDialog implements PropertyChangeListener {
36-
35+
private static final String PLATFORM_API_LEVEL = "22";
36+
3737
private static final String URL_REPOSITORY = "https://dl-ssl.google.com/android/repository/repository-11.xml";
3838
private static final String URL_REPOSITORY_FOLDER = "http://dl-ssl.google.com/android/repository/";
3939
private static final String URL_USB_DRIVER = "https://dl-ssl.google.com//android/repository/latest_usb_driver_windows.zip";
4040

41-
private static final String PLATFORM_API_LEVEL = "22";
42-
4341
private static final String PROPERTY_CHANGE_EVENT_TOTAL = "total";
4442
private static final String PROPERTY_CHANGE_EVENT_DOWNLOADED = "downloaded";
4543

@@ -276,7 +274,7 @@ public static String humanReadableByteCount(long bytes, boolean si) {
276274
}
277275

278276
public SDKDownloader(Frame editor, AndroidMode mode) {
279-
super(editor, "Need to reach out Google!", true);
277+
super(editor, "SDK download", true);
280278
this.editor = editor;
281279
this.mode = mode;
282280
this.sdk = null;

0 commit comments

Comments
 (0)