[Title] Ignore case in choice option
authorho.namkoong <ho.namkoong@samsung.com>
Wed, 10 Apr 2013 02:17:55 +0000 (11:17 +0900)
committerho.namkoong <ho.namkoong@samsung.com>
Wed, 10 Apr 2013 02:17:55 +0000 (11:17 +0900)
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#] 8763
[Problem]
[Cause]
[Solution]
[TestCase]

Change-Id: I332196a1ee32d82f0189eacaff454ae7550f711e

org.tizen.common/src/org/tizen/common/core/command/prompter/ChoiceOption.java

index 581819d..8f44b0b 100644 (file)
@@ -154,7 +154,7 @@ extends AbstractOption
                        return false;
                }
                
-               if(shortName.equals(trim(value))) {
+               if(shortName.equalsIgnoreCase(trim(value))) {
                        return true;
                }