Ignore:
Timestamp:
2016-03-13T21:36:47+01:00 (10 years ago)
Author:
Don-vip
Message:

remove unused code

File:
1 edited

Legend:

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

    r8308 r9983  
    1313public class PluginException extends Exception {
    1414    public final transient PluginProxy plugin;
    15     public final String name;
    1615
    1716    public PluginException(PluginProxy plugin, String name, Throwable cause) {
    1817        super(tr("An error occurred in plugin {0}", name), cause);
    1918        this.plugin = plugin;
    20         this.name = name;
    2119    }
    2220
    23     public PluginException(String name, String message) {
     21    public PluginException(String message) {
    2422        super(message);
    2523        this.plugin = null;
    26         this.name = name;
    2724    }
    2825
     
    3027        super(tr("An error occurred in plugin {0}", name), cause);
    3128        this.plugin = null;
    32         this.name = name;
    3329    }
    3430}
Note: See TracChangeset for help on using the changeset viewer.