Ignore:
Timestamp:
2020-06-07T10:12:42+02:00 (4 years ago)
Author:
simon04
Message:

fix #19026 - Make imagery preferences code more generic (patch by taylor.smock)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r16436 r16545  
    19111911        return rawString.trim();
    19121912    }
     1913
     1914    /**
     1915     * Intern a string
     1916     * @param string The string to intern
     1917     * @return The interned string
     1918     * @since 16545
     1919     */
     1920    public static String intern(String string) {
     1921        return string == null ? null : string.intern();
     1922    }
    19131923}
Note: See TracChangeset for help on using the changeset viewer.