Changeset 6643 in josm for trunk/test
- Timestamp:
- 2014-01-06T16:39:45+01:00 (11 years ago)
- Location:
- trunk/test/functional/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/functional/org/openstreetmap/josm/gui/history/HistoryBrowserTest.java
r6289 r6643 82 82 ds = reader.parseHistory(NullProgressMonitor.INSTANCE); 83 83 } catch(OsmTransferException e) { 84 e.printStackTrace();84 Main.error(e); 85 85 return; 86 86 } -
trunk/test/functional/org/openstreetmap/josm/io/UploadStrategySelectionPanelTest.java
r4311 r6643 12 12 import javax.swing.JTextField; 13 13 14 import org.openstreetmap.josm.Main; 14 15 import org.openstreetmap.josm.gui.io.UploadStrategySelectionPanel; 15 16 import org.openstreetmap.josm.gui.progress.NullProgressMonitor; … … 40 41 n = Integer.parseInt(tf.getText()); 41 42 } catch(NumberFormatException e) { 42 e.printStackTrace();43 Main.error(e); 43 44 return; 44 45 } … … 49 50 return pnl; 50 51 } 52 53 /** 54 * Constructs a new {@code UploadStrategySelectionPanelTest}. 55 */ 51 56 public UploadStrategySelectionPanelTest() { 52 57 build();
Note:
See TracChangeset
for help on using the changeset viewer.