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/AnyAction.java

    r32416 r32779  
    1 /*
    2  *      AnyAction.java
    3  *
    4  *      Copyright 2010 Hind <foxhind@gmail.com>
    5  *
    6  */
    7 
     1// License: GPL. For details, see LICENSE file.
    82package CommandLine;
    93
     
    2620public class AnyAction extends MapMode implements AWTEventListener {
    2721    private final CommandLine parentPlugin;
    28     final private Cursor cursorNormal, cursorActive;
     22    private final Cursor cursorNormal, cursorActive;
    2923    private Cursor currentCursor;
    3024    private Point mousePos;
     
    4943            Toolkit.getDefaultToolkit().addAWTEventListener(this, AWTEvent.KEY_EVENT_MASK);
    5044        } catch (SecurityException ex) {
     45            Main.warn(ex);
    5146        }
    5247    }
     
    5954            Toolkit.getDefaultToolkit().removeAWTEventListener(this);
    6055        } catch (SecurityException ex) {
     56            Main.warn(ex);
    6157        }
    6258    }
     
    9995                        ds.addSelected(nearestPrimitive);
    10096                        Main.map.mapView.repaint();
    101                     }
    102                     else
     97                    } else
    10398                        Main.info("Maximum instances!");
    10499                }
     
    124119            if (!Main.isDisplayingMapView())
    125120                return;
    126             nearestPrimitive = Main.map.mapView.getNearestNodeOrWay(mousePos, OsmPrimitive.isUsablePredicate, false);
     121            nearestPrimitive = Main.map.mapView.getNearestNodeOrWay(mousePos, OsmPrimitive::isUsable, false);
    127122            if (nearestPrimitive != null) {
    128123                setCursor(cursorActive);
    129             }
    130             else {
     124            } else {
    131125                setCursor(cursorNormal);
    132126            }
     
    135129
    136130    private void processMouseEvent(MouseEvent e) {
    137         if (e != null) { mousePos = e.getPoint(); }
     131        if (e != null) {
     132            mousePos = e.getPoint();
     133        }
    138134    }
    139135
     
    154150            currentCursor = c;
    155151        } catch (Exception e) {
     152            Main.warn(e);
    156153        }
    157154    }
Note: See TracChangeset for help on using the changeset viewer.