aboutsummaryrefslogtreecommitdiff
path: root/src/IvyBindListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyBindListener.java')
-rw-r--r--src/IvyBindListener.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/IvyBindListener.java b/src/IvyBindListener.java
index 96096f2..6fc17e1 100644
--- a/src/IvyBindListener.java
+++ b/src/IvyBindListener.java
@@ -7,6 +7,8 @@ package fr.dgac.ivy;
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
* Changelog:
+ * 1.2.8
+ * - removed the public abstract modifiers, which are redundant
*/
public interface IvyBindListener extends java.util.EventListener {
@@ -17,7 +19,7 @@ public interface IvyBindListener extends java.util.EventListener {
* @param int the regexp ID
* @param regexp the regexp
*/
- public abstract void bindPerformed(IvyClient client,int id, String regexp);
+ void bindPerformed(IvyClient client,int id, String regexp);
/**
* invoked when a Ivy Client performs a unbind
@@ -25,6 +27,6 @@ public interface IvyBindListener extends java.util.EventListener {
* @param int the regexp ID
* @param regexp the regexp
*/
- public abstract void unbindPerformed(IvyClient client,int id,String regexp);
+ void unbindPerformed(IvyClient client,int id,String regexp);
}