Changeset 16730 in osm for applications


Ignore:
Timestamp:
2009-07-30T10:15:12+02:00 (15 years ago)
Author:
stoecker
Message:

removed strange space signs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java

    r16463 r16730  
    322322            // that we want to draw the most recently
    323323            // requested images now.  We may have panned
    324             // or zoomed away 
     324            // or zoomed away
    325325            tile = downloadQueue.removeLast();
    326326            Image img = tile.loadImage();
     
    399399             * the current one isn't loaded, then try the last one.
    400400             * Should be good enough. If we've never seen one, then
    401              * guess.        
     401             * guess.
    402402             */
    403403            if (lastScaledImage != null) {
     
    412412         * If the zoom scale gets really, really off, these can get into
    413413         * the millions, so make this a double to prevent integer
    414          * overflows.        
     414         * overflows.
    415415         */
    416416        double drawWidth = p1.x - p0.x;
     
    614614        }
    615615    }
    616    
     616
    617617    /**
    618618     */
     
    655655        }
    656656        if (zoomIncreaseAllowed() && (ts.tilesSpanned() < 1.0)) {
    657             this.debug("doesn't even cover one tile (" + ts.tilesSpanned() 
     657            this.debug("doesn't even cover one tile (" + ts.tilesSpanned()
    658658                       + "), increasing zoom from " + currentZoomLevel);
    659659            if (increaseZoomLevel())
     
    696696        this.paintTileImages(g, ts, currentZoomLevel);
    697697        g.setColor(Color.red);
    698        
     698
    699699        for (Tile t : ts.allTiles()) {
    700700            // This draws the vertical lines for the entire
Note: See TracChangeset for help on using the changeset viewer.