Changeset 23121 in osm for applications/editors/josm
- Timestamp:
- 2010-09-12T13:35:28+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/toms/src/toms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/Toms.java
r23119 r23121 31 31 32 32 import javax.swing.JMenuItem; 33 import javax.swing.SwingUtilities; 33 34 34 35 import org.openstreetmap.josm.Main; … … 136 137 try { 137 138 PluginApp.runPlugins(); 138 } catch ( IOException e) {139 } catch (Exception e) { 139 140 e.printStackTrace(); 140 141 } 142 141 143 } 142 144 -
applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
r23109 r23121 20 20 import java.awt.event.KeyEvent; 21 21 import java.awt.event.WindowEvent; 22 import java.io.IOException; 22 23 import java.util.Collection; 23 24 import java.util.Iterator; … … 49 50 50 51 import toms.Messages; 52 import toms.plug.PluginApp; 51 53 import toms.seamarks.SeaMark; 52 54 import toms.seamarks.buoys.Buoy; … … 261 263 } 262 264 }); 263 265 264 266 setOpen(true); 265 267 -
applications/editors/josm/plugins/toms/src/toms/plug/PluginApp.java
r23119 r23121 12 12 import toms.plug.util.PluginLoader; 13 13 14 public class PluginApp {14 public class PluginApp implements Runnable { 15 15 16 16 public static void runPlugins() throws IOException { … … 36 36 } 37 37 38 @Override 39 public void run() { 40 try { 41 runPlugins(); 42 } catch (IOException e) { 43 e.printStackTrace(); 44 } 45 46 } 47 38 48 }
Note:
See TracChangeset
for help on using the changeset viewer.