Ignore:
Timestamp:
2009-12-24T09:50:22+01:00 (15 years ago)
Author:
jttt
Message:

Remove reference to OsmPrimitive.getDirectionKeys() (direction keys are now saved as search pattern)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/TagChecker.java

    r18623 r19200  
    213213
    214214                String okValue = null;
    215                 Boolean tagcheckerfile = false;
    216                 Boolean ignorefile = false;
     215                boolean tagcheckerfile = false;
     216                boolean ignorefile = false;
    217217                String line;
    218218                while((line = reader.readLine()) != null && (tagcheckerfile || line.length() != 0))
     
    323323            for(String a : OsmPrimitive.getUninterestingKeys())
    324324                presetsValueData.add(a);
    325             for(String a : OsmPrimitive.getDirectionKeys())
     325            // TODO directionKeys are no longer in OsmPrimitive (search pattern is used instead)
     326            /*  for(String a : OsmPrimitive.getDirectionKeys())
    326327                presetsValueData.add(a);
     328            */
    327329            for(String a : Main.pref.getCollection(PreferenceEditor.PREFIX + ".knownkeys",
    328330            Arrays.asList(new String[]{"is_in", "int_ref", "fixme", "population"})))
     
    497499                if(values == null)
    498500                {
    499                     Boolean ignore = false;
     501                    boolean ignore = false;
    500502                    for(String a : ignoreDataStartsWith)
    501503                    {
     
    886888            public Object tag;
    887889            public Object value;
    888             public Boolean noMatch;
    889             public Boolean tagAll = false;
    890             public Boolean valueAll = false;
    891             public Boolean valueBool = false;
     890            public boolean noMatch;
     891            public boolean tagAll = false;
     892            public boolean valueAll = false;
     893            public boolean valueBool = false;
    892894            private Pattern getPattern(String str) throws IllegalStateException, PatternSyntaxException
    893895            {
     
    925927                    value = n.startsWith("/") ? getPattern(n) : n;
    926928            }
    927             public Boolean match(OsmPrimitive osm)
     929            public boolean match(OsmPrimitive osm)
    928930            {
    929931                for(Entry<String, String> prop: osm.getKeys().entrySet())
     
    9981000            return null;
    9991001        }
    1000         public Boolean match(OsmPrimitive osm)
     1002        public boolean match(OsmPrimitive osm)
    10011003        {
    10021004            if(osm.getKeys() == null || (type == NODE && !(osm instanceof Node))
Note: See TracChangeset for help on using the changeset viewer.