Ignore:
Timestamp:
2017-05-27T22:56:30+02:00 (9 years ago)
Author:
stoecker
Message:

checkstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/WMSRacer.java

    r32914 r33342  
    11/*
    22 * GPLv2 or 3, Copyright (c) 2010  Andrzej Zaborowski
    3  *
    4  * This is the main class for the game plugin.
    53 */
    64package wmsturbochallenge;
     
    2624import org.openstreetmap.josm.plugins.PluginInformation;
    2725
     26/**
     27 * This is the main class for the game plugin.
     28 */
    2829public class WMSRacer extends Plugin implements LayerChangeListener, ActiveLayerChangeListener {
    2930    public WMSRacer(PluginInformation info) {
     
    8687             * horizontal scanlines (lines equidistant from
    8788             * camera eye)) */
    88             for (Layer l : frame.mapView.getLayerManager().getLayers())
     89            for (Layer l : frame.mapView.getLayerManager().getLayers()) {
    8990                if (l.isBackgroundLayer()) {
    9091                    groundLayer = l;
     
    9293                    return;
    9394                }
     95            }
    9496
    9597            groundLayer = null;
Note: See TracChangeset for help on using the changeset viewer.