Index: /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfReader.java
===================================================================
--- /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfReader.java	(revision 35034)
+++ /applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfReader.java	(revision 35035)
@@ -74,17 +74,17 @@
 
             if (header.hasBbox()) {
-            	HeaderBBox bbox = header.getBbox();
-            	if (bbox != null) {
-            		double minlat = parseRawDegrees(bbox.getBottom());
-            		double minlon = parseRawDegrees(bbox.getLeft());
-            		double maxlat = parseRawDegrees(bbox.getTop());
-            		double maxlon = parseRawDegrees(bbox.getRight());
-            		Bounds b = new Bounds(minlat, minlon, maxlat, maxlon);
-            		if (!b.isCollapsed() && areCoordinatesValid(minlat, minlon, maxlat, maxlon)) {
-            			ds.addDataSource(new DataSource(b, header.getSource()));
-            		} else {
-            			Logging.error("Invalid Bounds: "+b);
-            		}
-            	}
+                HeaderBBox bbox = header.getBbox();
+                if (bbox != null) {
+                    double minlat = parseRawDegrees(bbox.getBottom());
+                    double minlon = parseRawDegrees(bbox.getLeft());
+                    double maxlat = parseRawDegrees(bbox.getTop());
+                    double maxlon = parseRawDegrees(bbox.getRight());
+                    Bounds b = new Bounds(minlat, minlon, maxlat, maxlon);
+                    if (!b.isCollapsed() && areCoordinatesValid(minlat, minlon, maxlat, maxlon)) {
+                        ds.addDataSource(new DataSource(b, header.getSource()));
+                    } else {
+                        Logging.error("Invalid Bounds: "+b);
+                    }
+                }
             }
         }
