Index: applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java
===================================================================
--- applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java	(revision 12588)
+++ applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java	(revision 12778)
@@ -1,4 +1,4 @@
 /**
- * 
+ *
  */
 package at.dallermassl.josm.plugin.openvisible;
@@ -40,5 +40,5 @@
 public class OpenVisibleAction extends JosmAction {
     private File lastDirectory;
-    
+
     public OpenVisibleAction() {
         super(tr("Open Visible ..."), "openvisible",
@@ -60,7 +60,7 @@
         LatLon bottomLeft = view.getLatLon(bounds.x, bounds.y + bounds.height);
         LatLon topRight = view.getLatLon(bounds.x + bounds.width, bounds.y);
-        
+
         System.err.println("FileFind Bounds: " + bottomLeft + " to " + topRight);
-        
+
         JFileChooser fileChooser;
         if(lastDirectory != null) {
@@ -73,5 +73,5 @@
         File[] files = fileChooser.getSelectedFiles();
         lastDirectory = fileChooser.getCurrentDirectory();
-        
+
         for(File file : files) {
             try {
@@ -85,5 +85,5 @@
                         openFileAsGpx(file);
                     }
-                    
+
                 }
             } catch (FileNotFoundException e1) {
@@ -95,7 +95,7 @@
             }
         }
-        
+
     }
-    
+
     private void openAsData(File file) throws SAXException, IOException, FileNotFoundException {
         String fn = file.getName();
Index: applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisiblePlugin.java
===================================================================
--- applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisiblePlugin.java	(revision 12588)
+++ applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisiblePlugin.java	(revision 12778)
@@ -1,4 +1,4 @@
 /**
- * 
+ *
  */
 package at.dallermassl.josm.plugin.openvisible;
Index: applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OsmGpxBounds.java
===================================================================
--- applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OsmGpxBounds.java	(revision 12588)
+++ applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OsmGpxBounds.java	(revision 12778)
@@ -1,4 +1,4 @@
 /**
- * 
+ *
  */
 package at.dallermassl.josm.plugin.openvisible;
@@ -27,9 +27,9 @@
     private double minLon = 90.0;
     private double maxLon = -90.0;
-    
+
     public OsmGpxBounds() {
-        
+
     }
-    
+
     /**
      * Parses the given input stream (gpx or osm file).
@@ -46,6 +46,6 @@
         }
     }
-    
-    @Override 
+
+    @Override
     public void startElement(String ns, String lname, String qname, Attributes a) {
         if (qname.equals("node") || qname.equals("trkpt")) {
@@ -58,5 +58,5 @@
         }
     }
-    
+
     /**
      * Returns <code>true</code>, if the given coordinates intersect with the
@@ -75,5 +75,5 @@
         return ((lat2-lat1) > 0) && ((lon2-lon1) > 0);
     }
-        
+
     public static void main(String[] args) {
         if(args.length < 5) {
@@ -87,15 +87,15 @@
         String[] files = new String[args.length - 4];
         System.arraycopy(args, 4, files, 0, args.length - 4);
-            
-        try {    
+
+        try {
             File file;
             for(String fileName : files) {
                 file = new File(fileName);
-                if(!file.isDirectory() 
+                if(!file.isDirectory()
                   && (file.getName().endsWith("gpx") || file.getName().endsWith("osm"))) {
                     OsmGpxBounds parser = new OsmGpxBounds();
                     parser.parse(new BufferedInputStream(new FileInputStream(file)));
                     if(parser.intersects(minLat, maxLat, minLon, maxLon)) {
-                        System.out.println(file.getAbsolutePath()); // + "," + parser.minLat + "," + parser.maxLat + "," + parser.minLon + "," + parser.maxLon);                        
+                        System.out.println(file.getAbsolutePath()); // + "," + parser.minLat + "," + parser.maxLat + "," + parser.minLon + "," + parser.maxLon);
                     }
 //                    System.out.println(parser.intersects(47.0555, 47.09, 15.406, 15.4737));
@@ -112,9 +112,9 @@
 
     /**
-     * 
+     *
      */
     private static void printHelp() {
         System.out.println(OsmGpxBounds.class.getName() + " <minLat> <maxLat> <minLon> <maxLon> <files+>");
-        
+
     }
 
