Ignore:
Timestamp:
2013-12-22T00:09:16+01:00 (10 years ago)
Author:
simon04
Message:

see #9414 - implement MapCSS-based tag checker/fixer

The file deprecated.mapcss contains all DeprecatedTags tests. The
latter is to be removed eventually.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java

    r6362 r6506  
    359359            return env.osm.getUniqueId();
    360360        }
     361
     362        public static String tr(String... args) {
     363            final String text = args[0];
     364            System.arraycopy(args, 1, args, 0, args.length - 1);
     365            return org.openstreetmap.josm.tools.I18n.tr(text, args);
     366        }
    361367    }
    362368
Note: See TracChangeset for help on using the changeset viewer.