Changeset 3050 in josm


Ignore:
Timestamp:
26.02.2010 20:59:54 (2 years ago)
Author:
mjulius
Message:

fix last commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/search/PushbackTokenizer.java

    r3049 r3050  
    8888        StringBuilder s = new StringBuilder(); 
    8989        boolean escape = false; 
    90         while (c != -1 && (escape || (!sChars.contains(c) && (quoted || !Character.isWhitespace(c))))) { 
     90        while (c != -1 && (escape || (!sChars.contains((char)c) && (quoted || !Character.isWhitespace(c))))) { 
    9191            if (c == '\\' && !escape) { 
    9292                escape = true; 
Note: See TracChangeset for help on using the changeset viewer.