Changeset 1537:6e077ac581c9

Show
Ignore:
Timestamp:
10/22/10 16:46:59 (3 years ago)
Author:
Jean-Guilhem Rouel <jean-gui@…>
Branch:
default
Message:

Make the test on input type case insensitive

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/org/w3c/unicorn/tasklisttree/MethodCond.java

    r1536 r1537  
    1010        public boolean check(UnicornCall unicornCall) { 
    1111      // @@ get input type 
    12                 boolean b = value.equals(unicornCall.getInputMethod()); 
     12                boolean b = value.equalsIgnoreCase(unicornCall.getInputMethod()); 
    1313                if (getResult()) 
    1414                        return b;