Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (11 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModel.java

    r8308 r8444  
    7070    }
    7171
     72    /**
     73     * Constructs a new {@code PropertiesMergeModel}.
     74     */
    7275    public PropertiesMergeModel() {
    7376        coordMergeDecision = UNDECIDED;
     
    7881
    7982    /**
    80      * replies true if there is a coordinate conflict and if this conflict is
    81      * resolved
    82      *
    83      * @return true if there is a coordinate conflict and if this conflict is
    84      * resolved; false, otherwise
     83     * replies true if there is a coordinate conflict and if this conflict is resolved
     84     *
     85     * @return true if there is a coordinate conflict and if this conflict is resolved; false, otherwise
    8586     */
    8687    public boolean isDecidedCoord() {
    87         return ! coordMergeDecision.equals(UNDECIDED);
    88     }
    89 
    90     /**
    91      * replies true if there is a  conflict in the deleted state and if this conflict is
    92      * resolved
     88        return !coordMergeDecision.equals(UNDECIDED);
     89    }
     90
     91    /**
     92     * replies true if there is a  conflict in the deleted state and if this conflict is resolved
    9393     *
    9494     * @return true if there is a conflict in the deleted state and if this conflict is
     
    9696     */
    9797    public boolean isDecidedDeletedState() {
    98         return ! deletedMergeDecision.equals(UNDECIDED);
     98        return !deletedMergeDecision.equals(UNDECIDED);
    9999    }
    100100
     
    311311        boolean ret = true;
    312312        if (hasCoordConflict()) {
    313             ret = ret && ! coordMergeDecision.equals(UNDECIDED);
     313            ret = ret && !coordMergeDecision.equals(UNDECIDED);
    314314        }
    315315        if (hasDeletedStateConflict()) {
    316             ret = ret && ! deletedMergeDecision.equals(UNDECIDED);
     316            ret = ret && !deletedMergeDecision.equals(UNDECIDED);
    317317        }
    318318        return ret;
Note: See TracChangeset for help on using the changeset viewer.