diff options
author | Tom Tromey <tromey@redhat.com> | 2001-09-02 06:24:23 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2001-09-02 06:24:23 +0000 |
commit | 7de1193dabed821089e14086624e8cccdd0bc28c (patch) | |
tree | e38f1140df280abdce22450a5b2283e7dd7f473d | |
parent | 85be31e7c09d6327f2f1092a50b503560d1d81a3 (diff) | |
download | classpath-7de1193dabed821089e14086624e8cccdd0bc28c.tar.gz |
* java/lang/IllegalThreadStateException.java,
java/lang/InstantiationException.java: Minor comment tweaks to
satisfy libgcj `classes.pl' script.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | java/lang/IllegalThreadStateException.java | 6 | ||||
-rw-r--r-- | java/lang/InstantiationException.java | 2 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2001-09-02 Tom Tromey <tromey@redhat.com> + + * java/lang/IllegalThreadStateException.java, + java/lang/InstantiationException.java: Minor comment tweaks to + satisfy libgcj `classes.pl' script. + 2001-09-01 Tom Tromey <tromey@redhat.com> More conformance with spec; plus merge with libgcj: diff --git a/java/lang/IllegalThreadStateException.java b/java/lang/IllegalThreadStateException.java index 7b4693ea4..587edd467 100644 --- a/java/lang/IllegalThreadStateException.java +++ b/java/lang/IllegalThreadStateException.java @@ -1,6 +1,6 @@ -/* IllegalThreadStateException.java -- exception thrown when trying to - suspend or resume an object of class Thread when it is not in an - appropriate state for the operation. +/* IllegalThreadStateException.java -- exception thrown when trying to + suspend or resume a Thread when it is not in an appropriate state + for the operation. Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. diff --git a/java/lang/InstantiationException.java b/java/lang/InstantiationException.java index 19237d74d..29a82e0a5 100644 --- a/java/lang/InstantiationException.java +++ b/java/lang/InstantiationException.java @@ -1,5 +1,5 @@ /* InstantiationException.java -- exception thrown when trying to instantiate - interfaces and abstract classes using the newInstance method of class Class. + interfaces and abstract classes using Class.newInstance. Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. |