javaprims.h: Updated.

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

From-SVN: r60659
This commit is contained in:
Tom Tromey 2002-12-30 22:42:20 +00:00 committed by Tom Tromey
parent a88c283f0d
commit 9f1cf235ef
3 changed files with 21 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2002-12-29 Tom Tromey <tromey@redhat.com>
* gcj/javaprims.h: Updated.
* scripts/classes.pl (scan): Removed stray semicolon.
2002-12-30 Mark Wielaard <mark@klomp.org>
* java/net/URLStreamHandler.java (toExternalForm): Ignore port

View File

@ -230,16 +230,18 @@ extern "Java"
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 @@ extern "Java"
class RandomAccess;
class RandomAccessSubList;
class ResourceBundle;
class ResourceBundle$Security;
class Set;
class SimpleTimeZone;
class SortedMap;
@ -371,6 +372,13 @@ extern "Java"
class Manifest;
}
namespace regex
{
class Matcher;
class Pattern;
class PatternSyntaxException;
}
namespace zip
{
class Adler32;

View File

@ -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 @@ sub scan
&scan ("$dir/$_", $indent + 2);
}
print $spaces, "};\n";
print $spaces, "}\n";
}