Ignore:
Timestamp:
2016-07-04T03:25:08+02:00 (8 years ago)
Author:
donvip
Message:

checkstyle

Location:
applications/editors/josm/plugins/gpxfilter
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/gpxfilter/.project

    r32286 r32546  
    1616                        </arguments>
    1717                </buildCommand>
     18                <buildCommand>
     19                        <name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
     20                        <arguments>
     21                        </arguments>
     22                </buildCommand>
    1823        </buildSpec>
    1924        <natures>
    2025                <nature>org.eclipse.jdt.core.javanature</nature>
     26                <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
    2127        </natures>
    2228</projectDescription>
  • applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java

    r32467 r32546  
     1// License: GPL. For details, see LICENSE file.
    12package gpxfilter;
    23
     
    1415
    1516    public AddEGpxLayerAction() {
    16         super(tr("Add EGPX layer"),(String)null,tr("Add EGPX layer"),
     17        super(tr("Add EGPX layer"), (String) null, tr("Add EGPX layer"),
    1718            Shortcut.registerShortcut("gpxfilter:egpx", tr("Tool: {0}", tr("Add EGPX layer")),
    1819                 KeyEvent.VK_X, Shortcut.ALT_SHIFT),
     
    2627
    2728    @Override
    28     public void actionPerformed(ActionEvent arg0)  {
     29    public void actionPerformed(ActionEvent arg0) {
    2930        getLayerManager().addLayer(new EGpxLayer(Main.map.mapView.getRealBounds()));
    3031    }
  • applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java

    r27760 r32546  
    1 // License: GPL. See LICENSE file for details.
    2 
     1// License: GPL. For details, see LICENSE file.
    32package gpxfilter;
    43
     
    1312    public EGpxLayer(final Bounds b) {
    1413        super(new GpxData(), tr("GPX Data"));
    15         Thread t = new Thread(new Runnable()
    16         {
     14        Thread t = new Thread(new Runnable() {
    1715            @Override
    1816            public void run() {
  • applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxFilterPlugin.java

    r29778 r32546  
     1// License: GPL. For details, see LICENSE file.
    12package gpxfilter;
    23
  • applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxGrabber.java

    r30738 r32546  
    1 // License: GPL. Copyright 2007 by Immanuel Scholz and others
     1// License: GPL. For details, see LICENSE file.
    22package gpxfilter;
    33
     
    4141     *      ways.
    4242     */
    43     public GpxData parseRawGps() throws IOException, SAXException,OsmTransferException {
     43    public GpxData parseRawGps() throws IOException, SAXException, OsmTransferException {
    4444        String url = "trackpoints?bbox="+lon1+","+lat1+","+lon2+","+lat2+"&page="+page;
    4545        try (InputStream in = getInputStream(url, NullProgressMonitor.INSTANCE)) {
Note: See TracChangeset for help on using the changeset viewer.