Changeset 8468 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-06-06T01:48:41+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/TextTagParser.java
r8461 r8468 30 30 31 31 // properties need JOSM restart to apply, modified rarely enough 32 pr otectedstatic final int MAX_KEY_LENGTH = Main.pref.getInteger("tags.paste.max-key-length", 50);33 pr otectedstatic final int MAX_KEY_COUNT = Main.pref.getInteger("tags.paste.max-key-count", 30);34 pr otectedstatic final String KEY_PATTERN = Main.pref.get("tags.paste.tag-pattern", "[0-9a-zA-Z:_]*");35 pr otectedstatic final int MAX_VALUE_LENGTH = 255;32 private static final int MAX_KEY_LENGTH = Main.pref.getInteger("tags.paste.max-key-length", 50); 33 private static final int MAX_KEY_COUNT = Main.pref.getInteger("tags.paste.max-key-count", 30); 34 private static final String KEY_PATTERN = Main.pref.get("tags.paste.tag-pattern", "[0-9a-zA-Z:_]*"); 35 private static final int MAX_VALUE_LENGTH = 255; 36 36 37 37 private TextTagParser() {
Note:
See TracChangeset
for help on using the changeset viewer.