Skip to content

Commit a4f9eeb

Browse files
committed
renamed locateSysImage method to requestSysImage
1 parent 5e9370c commit a4f9eeb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mode/src/processing/mode/android/AVD.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ static public boolean ensureProperAVD(final Frame window, final AndroidMode mode
461461
// ABI again.
462462
AVD other = wear ? phoneAVD : watchAVD;
463463
boolean ask = !other.hasImages(sdk);
464-
boolean res = AndroidSDK.locateSysImage(window, mode, wear, ask);
464+
boolean res = AndroidSDK.requestSysImage(window, mode, wear, ask);
465465
if (!res) {
466466
return false;
467467
} else {

mode/src/processing/mode/android/AndroidSDK.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,8 +522,8 @@ static public AndroidSDK locate(final Frame window, final AndroidMode androidMod
522522
}
523523
}
524524

525-
static public boolean locateSysImage(final Frame window,
526-
final AndroidMode androidMode, final boolean wear, final boolean ask)
525+
static public boolean requestSysImage(final Frame window,
526+
final AndroidMode androidMode, final boolean wear, final boolean ask)
527527
throws BadSDKException, CancelException, IOException {
528528
final int result = showDownloadSysImageDialog(window, wear);
529529
if (result == JOptionPane.YES_OPTION) {

0 commit comments

Comments
 (0)