Ignore:
Timestamp:
2017-01-12T01:24:40+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - fb-contrib:SEO_SUBOPTIMAL_EXPRESSION_ORDER - Performance - Method orders expressions in a conditional in a sub optimal way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/conflict/DeletedStateConflictResolveCommand.java

    r11240 r11452  
    101101        if (!super.equals(obj)) return false;
    102102        DeletedStateConflictResolveCommand that = (DeletedStateConflictResolveCommand) obj;
    103         return Objects.equals(conflict, that.conflict) &&
    104                 decision == that.decision;
     103        return decision == that.decision && Objects.equals(conflict, that.conflict);
    105104    }
    106105}
Note: See TracChangeset for help on using the changeset viewer.