Changeset 12802 in josm for trunk/test/unit/org/openstreetmap/josm/tools/LoggingTest.java
- Timestamp:
- 2017-09-09T16:10:32+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/LoggingTest.java
r11324 r12802 45 45 46 46 /** 47 * @throws java.lang.Exception47 * @throws SecurityException if a security error occurs 48 48 */ 49 49 @Before 50 public void setUp() throws Exception { 50 public void setUp() throws SecurityException { 51 51 captured = null; 52 52 Logging.getLogger().addHandler(handler); … … 54 54 55 55 /** 56 * @throws java.lang.Exception56 * @throws SecurityException if a security error occurs 57 57 */ 58 58 @After 59 public void tearDown() throws Exception { 59 public void tearDown() throws SecurityException { 60 60 Logging.getLogger().removeHandler(handler); 61 61 } … … 213 213 214 214 /** 215 * Test method for {@link org.openstreetmap.josm.tools.Logging#logWithStackTrace(java.util.logging.Level, java.lang.String,java.lang.Throwable)}.215 * Test method for {@link Logging#logWithStackTrace(Level, String, Throwable)}. 216 216 */ 217 217 @Test
Note:
See TracChangeset
for help on using the changeset viewer.
