diff options
author | Damien Roth <damien.roth@gmail.com> | 2008-11-24 16:02:00 +0000 |
---|---|---|
committer | Damien Roth <damien.roth@gmail.com> | 2008-11-24 16:02:00 +0000 |
commit | aef3732b25a6b4165e6e1a8b360e8faefd867a82 (patch) | |
tree | 74ed4f145f2b4974b9d94e0296f0c3e1d42381a1 /src/net/java/sip/communicator/plugin/dictaccregwizz | |
parent | d448b042d1f04aa5f55ae4b29c1714f4ff7873a1 (diff) | |
download | jitsi-aef3732b25a6b4165e6e1a8b360e8faefd867a82.zip jitsi-aef3732b25a6b4165e6e1a8b360e8faefd867a82.tar.gz jitsi-aef3732b25a6b4165e6e1a8b360e8faefd867a82.tar.bz2 |
Remove @override lines in the dictaccregwizz plugin
Diffstat (limited to 'src/net/java/sip/communicator/plugin/dictaccregwizz')
-rwxr-xr-x | src/net/java/sip/communicator/plugin/dictaccregwizz/ProgressPanel.java | 1 | ||||
-rwxr-xr-x | src/net/java/sip/communicator/plugin/dictaccregwizz/StrategiesList.java | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/net/java/sip/communicator/plugin/dictaccregwizz/ProgressPanel.java b/src/net/java/sip/communicator/plugin/dictaccregwizz/ProgressPanel.java index 7b56962..c7387ee 100755 --- a/src/net/java/sip/communicator/plugin/dictaccregwizz/ProgressPanel.java +++ b/src/net/java/sip/communicator/plugin/dictaccregwizz/ProgressPanel.java @@ -128,7 +128,6 @@ public class ProgressPanel this.validate(); } - @Override public void actionPerformed(ActionEvent arg0) { this.searchThread.cancel(); diff --git a/src/net/java/sip/communicator/plugin/dictaccregwizz/StrategiesList.java b/src/net/java/sip/communicator/plugin/dictaccregwizz/StrategiesList.java index 713ff86..1f8c2cf 100755 --- a/src/net/java/sip/communicator/plugin/dictaccregwizz/StrategiesList.java +++ b/src/net/java/sip/communicator/plugin/dictaccregwizz/StrategiesList.java @@ -141,7 +141,6 @@ public class StrategiesList /** * Implements <tt>ListModel.getElementAt</tt> */ - @Override public Object getElementAt(int row) { return this.data.get(row); @@ -150,7 +149,6 @@ public class StrategiesList /** * Implements <tt>ListModel.getSize</tt> */ - @Override public int getSize() { return this.data.size(); @@ -183,7 +181,6 @@ public class StrategiesList extends JLabel implements ListCellRenderer { - @Override /** * implements <tt>ListCellRenderer.getListCellRendererComponent</tt> */ @@ -210,4 +207,5 @@ public class StrategiesList return this; } } -}
\ No newline at end of file +} + |