Changeset 211
- Timestamp:
- Dec 6, 2006, 1:50:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/se/lu/onk/AnnotationFilter/src/annotationfilter/Filter.java
r210 r211 42 42 try 43 43 { 44 param_annotationValues = section.findStringOpt("annotationValues") ;44 param_annotationValues = section.findStringOpt("annotationValues").toLowerCase(); 45 45 param_annotationType = section.findStringOpt("annotationType"); 46 46 if (param_annotationType.equals("0")) … … 105 105 if (filter) 106 106 { 107 if (annotationValues.contains(vals[annotationCol] ))107 if (annotationValues.contains(vals[annotationCol].toLowerCase())) 108 108 { 109 109 data.add(vals);
Note: See TracChangeset
for help on using the changeset viewer.