From 0cef96242b0e0aa10b4b33ee0f4b175048dbe3e0 Mon Sep 17 00:00:00 2001 From: jestin Date: Wed, 6 Jul 2005 20:03:49 +0000 Subject: Voir les fichiers eux-même pour les nouveautés. Préparation de 1.2.8 --- src/IvyBindListener.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/IvyBindListener.java') 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 http://www.tls.cena.fr/products/ivy/ * * 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); } -- cgit v1.1