Changeset 9419 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-01-12T17:39:45+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r9352 r9419 92 92 public static final String URL_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~:/?#[]@!$&'()*+,;=%"; 93 93 94 private static char[] DEFAULT_STRIP = {'\u200B', '\uFEFF'}; 94 private static final char[] DEFAULT_STRIP = {'\u200B', '\uFEFF'}; 95 95 96 96 /** … … 1000 1000 1001 1001 /** 1002 * An alternative to {@link String#trim()} to effectively remove all leading and trailing white characters, including Unicode ones. 1002 * An alternative to {@link String#trim()} to effectively remove all leading 1003 * and trailing white characters, including Unicode ones. 1003 1004 * @param str The string to strip 1004 1005 * @return <code>str</code>, without leading and trailing characters, according to … … 1017 1018 1018 1019 /** 1019 * An alternative to {@link String#trim()} to effectively remove all leading and trailing white characters, including Unicode ones. 1020 * An alternative to {@link String#trim()} to effectively remove all leading 1021 * and trailing white characters, including Unicode ones. 1020 1022 * @param str The string to strip 1021 1023 * @param skipChars additional characters to skip
Note:
See TracChangeset
for help on using the changeset viewer.