mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
removing N as default parameter
This commit is contained in:
parent
71546f5c0c
commit
0ab450ddac
@ -501,11 +501,11 @@ public class TryIt {
|
|||||||
if (!(sdkConfigFile.exists() && !sdkConfigFile.isDirectory())) {
|
if (!(sdkConfigFile.exists() && !sdkConfigFile.isDirectory())) {
|
||||||
//TODO
|
//TODO
|
||||||
Scanner read = new Scanner(System.in, StandardCharsets.UTF_8.toString());
|
Scanner read = new Scanner(System.in, StandardCharsets.UTF_8.toString());
|
||||||
System.out.print("Do you have an Android SDK installed on your computer (y/N) ? : ");
|
System.out.print("Do you have an Android SDK installed on your computer (y/n) ? : ");
|
||||||
String response = read.nextLine().toLowerCase();
|
String response = read.nextLine().toLowerCase();
|
||||||
if (response.matches("y")) {
|
if (response.matches("y")) {
|
||||||
setSDKPath();
|
setSDKPath();
|
||||||
} else if (response.matches("n") || response.matches("")) {
|
} else if (response.matches("n") ) {
|
||||||
getAndroidSDK();
|
getAndroidSDK();
|
||||||
} else {
|
} else {
|
||||||
if (count < 5) {
|
if (count < 5) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user