From d43e58db2577932f7d7f3f3474741e0b96ca1810 Mon Sep 17 00:00:00 2001 From: "ho.namkoong" Date: Wed, 10 Apr 2013 12:04:44 +0900 Subject: [PATCH] [Title] Ignore case in choice option [Type] [Module] [Priority] [Jira#] [Redmine#] 8763 [Problem] [Cause] [Solution] [TestCase] Change-Id: Ia93f3188dc6fd2d3000970e5b0cfc74d1919a7bf --- .../src/org/tizen/common/core/command/prompter/ChoiceOption.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.tizen.common/src/org/tizen/common/core/command/prompter/ChoiceOption.java b/org.tizen.common/src/org/tizen/common/core/command/prompter/ChoiceOption.java index 581819d..8f44b0b 100644 --- a/org.tizen.common/src/org/tizen/common/core/command/prompter/ChoiceOption.java +++ b/org.tizen.common/src/org/tizen/common/core/command/prompter/ChoiceOption.java @@ -154,7 +154,7 @@ extends AbstractOption return false; } - if(shortName.equals(trim(value))) { + if(shortName.equalsIgnoreCase(trim(value))) { return true; } -- 2.7.4