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]

Patch: FYI: Fixed classes.pl


This fixes classes.pl to remove the stray `;'.
Checking in on trunk only.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* gcj/javaprims.h: Updated.
	* scripts/classes.pl (scan): Removed stray semicolon.

Index: gcj/javaprims.h
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gcj/javaprims.h,v
retrieving revision 1.43
diff -u -r1.43 javaprims.h
--- gcj/javaprims.h 28 Dec 2002 06:38:52 -0000 1.43
+++ gcj/javaprims.h 30 Dec 2002 22:38:42 -0000
@@ -230,16 +230,18 @@
         class Array;
         class Constructor;
         class Field;
-	class InvocationHandler;
+        class InvocationHandler;
         class InvocationTargetException;
         class Member;
         class Method;
         class Modifier;
-	class Proxy;
-	class Proxy$ProxyData;
-	class Proxy$ProxyType;
+        class Proxy;
+        class Proxy$ClassFactory;
+        class Proxy$ProxyData;
+        class Proxy$ProxySignature;
+        class Proxy$ProxyType;
         class ReflectPermission;
-	class UndeclaredThrowableException;
+        class UndeclaredThrowableException;
       }
     }
 
@@ -334,7 +336,6 @@
       class RandomAccess;
       class RandomAccessSubList;
       class ResourceBundle;
-      class ResourceBundle$Security;
       class Set;
       class SimpleTimeZone;
       class SortedMap;
@@ -369,6 +370,13 @@
         class JarInputStream;
         class JarOutputStream;
         class Manifest;
+      }
+
+      namespace regex
+      {
+        class Matcher;
+        class Pattern;
+        class PatternSyntaxException;
       }
 
       namespace zip
Index: scripts/classes.pl
===================================================================
RCS file: /cvs/gcc/gcc/libjava/scripts/classes.pl,v
retrieving revision 1.4
diff -u -r1.4 classes.pl
--- scripts/classes.pl 11 Dec 2000 21:50:39 -0000 1.4
+++ scripts/classes.pl 30 Dec 2002 22:38:44 -0000
@@ -1,7 +1,7 @@
 # classes.pl - A perl program to generate most of the contents of
 # javaprims.h automatically.
 
-# Copyright (C) 1998, 1999, 2000  Red Hat, Inc.
+# Copyright (C) 1998, 1999, 2000, 2002  Red Hat, Inc.
 #
 # This file is part of libjava.
 #
@@ -119,5 +119,5 @@
 	&scan ("$dir/$_", $indent + 2);
     }
 
-    print $spaces, "};\n";
+    print $spaces, "}\n";
 }


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