aboutsummaryrefslogtreecommitdiff
path: root/src/IvyBindListener.java
diff options
context:
space:
mode:
authorjestin2005-07-06 20:03:49 +0000
committerjestin2005-07-06 20:03:49 +0000
commit0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0 (patch)
tree06afd0e92815bcdfa856a67c765862b551e39e4d /src/IvyBindListener.java
parentfe015aed1f9aa5f2d7247f9262d7f12c59536379 (diff)
downloadivy-java-0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0.zip
ivy-java-0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0.tar.gz
ivy-java-0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0.tar.bz2
ivy-java-0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0.tar.xz
Voir les fichiers eux-même pour les nouveautés. Préparation de 1.2.8
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);
}