Merge pull request #777 from Nirothipan/master

Removing default parameter
This commit is contained in:
Madhawa Perera 2017-07-31 12:02:19 +05:30 committed by GitHub
commit ff1e6190a3

View File

@ -269,7 +269,7 @@ public class TryIt {
checkForSystemImages();
if (!new File(wso2AvdLocation).isDirectory()) {
Scanner read = new Scanner(System.in, StandardCharsets.UTF_8.toString());
System.out.print("Do you want to create WSO2_AVD with default configs (Y/n)?: ");
System.out.print("Do you want to create WSO2_AVD with default configs (y/n)?: ");
if (read.next().toLowerCase().matches("y")) {
createAVD();
return;