Ignore:
Timestamp:
2015-05-22T01:39:47+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - A close curly brace should be located at the beginning of a line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolutionUtil.java

    r7005 r8413  
    1616public final class TagConflictResolutionUtil {
    1717
    18     /** no constructor, just static utility methods */
    19     private TagConflictResolutionUtil() {}
     18    private TagConflictResolutionUtil() {
     19        // no constructor, just static utility methods
     20    }
    2021
    2122    /**
    2223     * Normalizes the tags in the tag collection <code>tc</code> before resolving tag conflicts.
    2324     *
    24      *  Removes irrelevant tags like "created_by".
     25     * Removes irrelevant tags like "created_by".
    2526     *
    26      *  For tags which are not present on at least one of the merged nodes, the empty value ""
    27      *  is added to the list of values for this tag, but only if there are at least two
    28      *  primitives with tags, and at least one tagged primitive do not have this tag.
     27     * For tags which are not present on at least one of the merged nodes, the empty value ""
     28     * is added to the list of values for this tag, but only if there are at least two
     29     * primitives with tags, and at least one tagged primitive do not have this tag.
    2930     *
    3031     * @param tc the tag collection
Note: See TracChangeset for help on using the changeset viewer.