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

remove extra whitespaces

Location:
trunk/src/org/openstreetmap/josm/gui/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/util/AdjustmentSynchronizer.java

    r8390 r8444  
    6262    @Override
    6363    public void adjustmentValueChanged(AdjustmentEvent e) {
    64         if (! enabledMap.get(e.getAdjustable()))
     64        if (!enabledMap.get(e.getAdjustable()))
    6565            return;
    6666        for (Adjustable a : synchronizedAdjustables) {
     
    7878    protected void setParticipatingInSynchronizedScrolling(Adjustable adjustable, boolean isParticipating) {
    7979        CheckParameterUtil.ensureParameterNotNull(adjustable, "adjustable");
    80         if (! synchronizedAdjustables.contains(adjustable))
     80        if (!synchronizedAdjustables.contains(adjustable))
    8181            throw new IllegalStateException(tr("Adjustable {0} not registered yet. Cannot set participation in synchronized adjustment.", adjustable));
    8282
     
    9393     */
    9494    protected boolean isParticipatingInSynchronizedScrolling(Adjustable adjustable) {
    95         if (! synchronizedAdjustables.contains(adjustable))
     95        if (!synchronizedAdjustables.contains(adjustable))
    9696            throw new IllegalStateException(tr("Adjustable {0} not registered yet.", adjustable));
    9797
     
    117117        CheckParameterUtil.ensureParameterNotNull(view, "view");
    118118
    119         if (! synchronizedAdjustables.contains(adjustable)) {
     119        if (!synchronizedAdjustables.contains(adjustable)) {
    120120            participateInSynchronizedScrolling(adjustable);
    121121        }
  • trunk/src/org/openstreetmap/josm/gui/util/HighlightHelper.java

    r8285 r8444  
    119119        DataSet ds = Main.main.getCurrentDataSet();
    120120        if (ds!=null) {
    121             highlightedPrimitives.addAll( ds.allNonDeletedPrimitives() );
     121            highlightedPrimitives.addAll(ds.allNonDeletedPrimitives());
    122122        }
    123123    }
Note: See TracChangeset for help on using the changeset viewer.