Changeset 9205 in josm for trunk/test/performance/org
- Timestamp:
- 2015-12-28T21:25:25+01:00 (9 years ago)
- File:
-
- 1 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();
Note:
See TracChangeset
for help on using the changeset viewer.