This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: javax.naming.event.EventDirContext


Hi list,


I commited the attached obvious patch to fix a typo in a method name. I also 
jalopied this little file I was at it.



Michael
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2435
diff -u -b -B -r1.2435 ChangeLog
--- ChangeLog	9 Dec 2003 18:45:08 -0000	1.2435
+++ ChangeLog	11 Dec 2003 15:39:16 -0000
@@ -1,3 +1,9 @@
+2003-12-11  Michael Koch  <konqueror@gmx.de>
+
+	* javax/naming/event/EventDirContext.java: Jalopied.
+	(addNamingListener): Fixed typo in method name.
+	
+
 2003-12-09  Michael Koch  <konqueror@gmx.de>
 
 	* Makefile.am (nat_headers_install): New variable with header files to
Index: javax/naming/event/EventDirContext.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/naming/event/EventDirContext.java,v
retrieving revision 1.3
diff -u -b -B -r1.3 EventDirContext.java
--- javax/naming/event/EventDirContext.java	11 Oct 2003 19:06:23 -0000	1.3
+++ javax/naming/event/EventDirContext.java	11 Dec 2003 15:39:16 -0000
@@ -35,10 +35,13 @@
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
-
 package javax.naming.event;
-import javax.naming.*;
-import javax.naming.directory.*;
+
+import javax.naming.Name;
+import javax.naming.NamingException;
+import javax.naming.directory.DirContext;
+import javax.naming.directory.SearchControls;
+
  
 /**
  * @author Warren Levy <warrenl@redhat.com>
@@ -44,20 +47,19 @@
  * @author Warren Levy <warrenl@redhat.com>
  * @date June 1, 2001
  */
-
 public interface EventDirContext extends EventContext, DirContext
 {
-  void addNamingListener (Name target, String filter, SearchControls ctls,
+  void addNamingListener(Name target, String filter, SearchControls ctls,
                           NamingListener l) throws NamingException;
   
-  void addNamingListeneri (String target, String filter, SearchControls ctls,
+  void addNamingListener(String target, String filter, SearchControls ctls,
 		           NamingListener l) throws NamingException;
   
-  void addNamingListener (Name target, String filter, Object[] filterArgs,
+  void addNamingListener(Name target, String filter, Object[] filterArgs,
                           SearchControls ctls, NamingListener l)
 				throws NamingException;
   
-  void addNamingListener(String target, String filter,
-  				Object[] filterArgs, SearchControls ctls,
-				NamingListener l) throws NamingException;
+  void addNamingListener(String target, String filter, Object[] filterArgs,
+                         SearchControls ctls, NamingListener l)
+    throws NamingException;
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]