Changeset 212


Ignore:
Timestamp:
Dec 6, 2006, 2:01:38 PM (16 years ago)
Author:
Johan Enell
Message:

Case sensitivity added again. Apparently it was needed...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/se/lu/onk/AnnotationFilter/src/annotationfilter/Filter.java

    r211 r212  
    4242    try
    4343    {
    44       param_annotationValues = section.findStringOpt("annotationValues").toLowerCase();
     44      param_annotationValues = section.findStringOpt("annotationValues");
    4545      param_annotationType = section.findStringOpt("annotationType");
    4646      if (param_annotationType.equals("0"))
     
    105105        if (filter)
    106106        {
    107           if (annotationValues.contains(vals[annotationCol].toLowerCase()))
     107          if (annotationValues.contains(vals[annotationCol]))
    108108          {
    109109            data.add(vals);
Note: See TracChangeset for help on using the changeset viewer.