Ignore:
Timestamp:
2011-04-15T22:03:38+02:00 (13 years ago)
Author:
stoecker
Message:

remove migration stuff for old imagery, wms and remote control plugins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r3874 r4028  
    7575        String IN_CORE = tr("integrated into main program");
    7676
    77         class RemotecontrolMigration implements Runnable {
    78             public void run() {
    79                 System.out.println("Migrating remotecontrol plugin...");
    80                 if (!RemoteControl.PROP_REMOTECONTROL_ENABLED.isSet()) {
    81                     System.out.println("  Setting "+RemoteControl.PROP_REMOTECONTROL_ENABLED.getKey()+"=true");
    82                     RemoteControl.PROP_REMOTECONTROL_ENABLED.put(true);
    83                 }
    84                 System.out.println("...Done.");
    85             }
    86         }
    87 
    8877        DEPRECATED_PLUGINS = Arrays.asList(new DeprecatedPlugin[] {
    8978            new DeprecatedPlugin("mappaint", IN_CORE),
     
    111100            new DeprecatedPlugin("validator", IN_CORE),
    112101            new DeprecatedPlugin("multipoly", IN_CORE),
    113             new DeprecatedPlugin("remotecontrol", IN_CORE, new RemotecontrolMigration()),
     102            new DeprecatedPlugin("remotecontrol", IN_CORE),
    114103            new DeprecatedPlugin("imagery", IN_CORE),
    115104            new DeprecatedPlugin("slippymap", IN_CORE),
Note: See TracChangeset for help on using the changeset viewer.