Ignore:
Timestamp:
2013-07-17T00:01:49+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/Main.java

    r5957 r6070  
    112112        return true;
    113113    }
    114    
     114
    115115    /**
    116116     * Global parent component for all dialogs and message boxes
    117117     */
    118118    public static Component parent;
    119    
     119
    120120    /**
    121121     * Global application.
    122122     */
    123123    public static Main main;
    124    
     124
    125125    /**
    126126     * Command-line arguments used to run the application.
    127127     */
    128128    public static String[] commandLineArgs;
    129    
     129
    130130    /**
    131131     * The worker thread slave. This is for executing all long and intensive
     
    134134     */
    135135    public final static ExecutorService worker = new ProgressMonitorExecutor();
    136    
     136
    137137    /**
    138138     * Global application preferences
     
    144144     */
    145145    public static final PrimitiveDeepCopy pasteBuffer = new PrimitiveDeepCopy();
    146    
     146
    147147    /**
    148148     * The layer source from which {@link Main#pasteBuffer} data comes from.
     
    154154     */
    155155    public static MapFrame map;
    156    
     156
    157157    /**
    158158     * Set to <code>true</code>, when in applet mode
     
    543543        contentPanePrivate.getActionMap().remove(action);
    544544    }
    545    
     545
    546546    /**
    547547     * Replies the registered action for the given shortcut
     
    565565
    566566    /**
    567      * Global panel. 
     567     * Global panel.
    568568     */
    569569    public static final JPanel panel = new JPanel(new BorderLayout());
     
    704704    /**
    705705     * Asks user to perform "save layer" operations (save .osm on disk and/or upload osm data to server) before osm layers deletion.
    706      * 
     706     *
    707707     * @param selectedLayers The layers to check. Only instances of {@link OsmDataLayer} are considered.
    708708     * @param exit {@code true} if JOSM is exiting, {@code false} otherwise.
     
    897897        }
    898898    }
    899    
     899
    900900    protected static void addListener() {
    901901        parent.addComponentListener(new WindowPositionSizeListener());
     
    10461046    /**
    10471047     * Listener for window switch events.
    1048      * 
     1048     *
    10491049     * These are events, when the user activates a window of another application
    10501050     * or comes back to JOSM. Window switches from one JOSM window to another
Note: See TracChangeset for help on using the changeset viewer.