Ignore:
Timestamp:
2013-11-02T23:47:36+01:00 (10 years ago)
Author:
Don-vip
Message:

Sonar/Findbugs - Hide Utility Class Constructor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/TigerUtils.java

    r6264 r6360  
    99 *
    1010 * @author daveh
    11  *
     11 * @since 529
    1212 */
    1313public class TigerUtils {
     14   
     15    private TigerUtils() {
     16        // Hide default constructor for utils classes
     17    }
    1418
    15     public static boolean isTigerTag(String tag)
    16     {
     19    /**
     20     * Determines if the given tag is a TIGER one
     21     * @param tag The tag to check
     22     * @return {@code true} if {@code tag} starts with {@code tiger:} namespace
     23     */
     24    public static boolean isTigerTag(String tag) {
    1725        if (tag.indexOf("tiger:") == -1)
    1826            return false;
Note: See TracChangeset for help on using the changeset viewer.