Explorar el Código

issue 3465: addonbrowser also likes to eat cpu cycles for breakfast

This is not a compelte fix, but it does go some way to address it

Change-Id: I3651c35b34439993f99e57c9aa2915f2208fe385
Reviewed-on: http://gerrit.dmdirc.com/408
Tested-by: Gregory Holmes <greboid@dmdirc.com>
Reviewed-by: Chris Smith <chris@dmdirc.com>
Tested-by: Chris Smith <chris@dmdirc.com>
tags/0.6.3
Gregory Holmes hace 14 años
padre
commit
823b4a9dc2

+ 33
- 0
src/com/dmdirc/addons/ui_swing/components/addonbrowser/AddonInfoLabel.java Ver fichero

@@ -103,4 +103,37 @@ public class AddonInfoLabel extends JPanel {
103 103
     public AddonInfo getAddonInfo() {
104 104
         return addonInfo;
105 105
     }
106
+
107
+    /** {@inheritDoc} */
108
+    @Override
109
+    public void invalidate() {
110
+    }
111
+
112
+    /** {@inheritDoc} */
113
+    @Override
114
+    public void revalidate() {
115
+    }
116
+
117
+    /** {@inheritDoc} */
118
+    @Override
119
+    public void repaint() {
120
+    }
121
+
122
+    /** {@inheritDoc} */
123
+    @Override
124
+    public void firePropertyChange(String propertyName, Object oldValue,
125
+            Object newValue) {
126
+    }
127
+
128
+    /** {@inheritDoc} */
129
+    @Override
130
+    public void firePropertyChange(String propertyName, boolean oldValue,
131
+            boolean newValue) {
132
+    }
133
+
134
+    /** {@inheritDoc} */
135
+    @Override
136
+    public void firePropertyChange(String propertyName, int oldValue,
137
+            int newValue) {
138
+    }
106 139
 }

Loading…
Cancelar
Guardar