Ignore:
Timestamp:
2016-08-08T00:01:16+02:00 (8 years ago)
Author:
donvip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/History.java

    r30671 r32779  
    1 /*
    2  *      History.java
    3  *
    4  *      Copyright 2010 Hind <foxhind@gmail.com>
    5  *
    6  */
    7 
     1// License: GPL. For details, see LICENSE file.
    82package CommandLine;
    93
     
    2620            if (prevItem == null) {
    2721                historyList.addFirst(item);
    28             }
    29             else {
     22            } else {
    3023                if (!prevItem.equalsIgnoreCase(item))
    3124                    historyList.addFirst(item);
Note: See TracChangeset for help on using the changeset viewer.