Changeset 9793 in josm for trunk/test/performance


Ignore:
Timestamp:
2016-02-13T20:49:22+01:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle

Location:
trunk/test/performance/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/performance/org/openstreetmap/josm/PerformanceTestUtils.java

    r9789 r9793  
    22package org.openstreetmap.josm;
    33
     4import org.openstreetmap.josm.io.XmlWriter;
     5
    46import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
    5 
    6 import org.openstreetmap.josm.io.XmlWriter;
    77
    88/**
     
    6363    /**
    6464     * Emit one data value for the Jenkins Measurement Plots Plugin.
    65      * 
     65     *
    6666     * The plugin collects the values over multiple builds and plots them in a diagram.
    67      *
    68      * @see https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin
     67     *
    6968     * @param name the name / title of the measurement
    7069     * @param value the value
     70     * @see https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin
    7171     */
    7272    public static void measurementPlotsPluginOutput(String name, double value) {
  • trunk/test/performance/org/openstreetmap/josm/gui/mappaint/MapRendererPerformanceTest.java

    r9788 r9793  
    6868        }
    6969    }
     70
    7071    private static final EnumMap<Feature, BooleanStyleSetting> filters = new EnumMap<>(Feature.class);
    7172
     
    112113
    113114        MapCSSStyleSource defaultStyle = null;
    114         for (int i = 0; i< sources.size(); i++) {
     115        for (int i = 0; i < sources.size(); i++) {
    115116            StyleSource s = sources.get(i);
    116117            if ("resource://styles/standard/elemstyles.mapcss".equals(s.url)) {
     
    199200                try {
    200201                    Thread.sleep(300);
    201                 } catch (InterruptedException ex) {}
     202                } catch (InterruptedException ex) {
     203                    Main.warn(ex);
     204                }
    202205                StyledMapRenderer.BenchmarkData data = new StyledMapRenderer.BenchmarkData();
    203206                data.skipDraw = skipDraw;
Note: See TracChangeset for help on using the changeset viewer.