Changeset 9205 in josm for trunk/test
- Timestamp:
- 2015-12-28T21:25:25+01:00 (7 years ago)
- Location:
- trunk/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/performance/org/openstreetmap/josm/PerformanceTestUtils.java
r8632 r9205 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm; 3 4 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 3 5 4 6 /** … … 37 39 * @return A {@link PerformanceTestTimer} object of which you can call {@link PerformanceTestTimer#done()} when done. 38 40 */ 41 @SuppressFBWarnings(value = "DM_GC", justification = "Performance test code") 39 42 public static PerformanceTestTimer startTimer(String name) { 40 43 System.gc(); -
trunk/test/unit/org/openstreetmap/josm/actions/mapmode/SelectActionTest.java
r8949 r9205 36 36 @Override 37 37 public synchronized int getInteger(String key, int def) { 38 if ( key == "edit.initial-move-delay") {38 if ("edit.initial-move-delay".equals(key)) { 39 39 return 0; 40 40 } else {
Note: See TracChangeset
for help on using the changeset viewer.