Browse Source

Remove obsolete domainUpdated method.

Change-Id: Iaaf6a3932768e7e8e8a5ab225437d0c8340e4d5f
Reviewed-on: http://gerrit.dmdirc.com/3643
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
pull/1/head
Chris Smith 10 years ago
parent
commit
8fc8b6cf98
1 changed files with 0 additions and 12 deletions
  1. 0
    12
      src/com/dmdirc/plugins/implementations/BasePlugin.java

+ 0
- 12
src/com/dmdirc/plugins/implementations/BasePlugin.java View File

@@ -48,7 +48,6 @@ public abstract class BasePlugin implements Plugin {
48 48
         if (!domainSet) {
49 49
             domainSet = true;
50 50
             myDomain = newDomain;
51
-            domainUpdated();
52 51
         }
53 52
     }
54 53
 
@@ -92,17 +91,6 @@ public abstract class BasePlugin implements Plugin {
92 91
         return myDomain;
93 92
     }
94 93
 
95
-    /**
96
-     * Called when the domain for plugin settings has been set. This will only be called once
97
-     * (either when the plugin is loading, or when its config is being shown).
98
-     *
99
-     * @deprecated Domain should be obtained from {@link PluginInfo}, and will never be updated.
100
-     */
101
-    @Deprecated
102
-    protected void domainUpdated() {
103
-        //Define this here so only implementations that care have to override
104
-    }
105
-
106 94
     /** {@inheritDoc} */
107 95
     @Override
108 96
     public ValidationResponse checkPrerequisites() {

Loading…
Cancel
Save