AssertionError.java: Typo fix.

2005-04-21  Tom Tromey  <tromey@redhat.com>

	* java/lang/AssertionError.java: Typo fix.

From-SVN: r98523
This commit is contained in:
Tom Tromey 2005-04-21 20:41:32 +00:00 committed by Michael Koch
parent eb7058ce96
commit 8fd5bcbe95
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-04-21 Tom Tromey <tromey@redhat.com>
* java/lang/AssertionError.java: Typo fix.
2005-04-21 Tom Tromey <tromey@redhat.com>
* java/lang/VMClassLoader.java (transformException): Removed.

View File

@ -43,7 +43,7 @@ package java.lang;
* statement added in JDK 1.4, to indicate that an assertion failed. There
* are enough constructors to ensure that
* <code>new AssertionError(<em>expression</em>)</code> will work for all
* espressions, regardless of type, as if the error message were given by
* expressions, regardless of type, as if the error message were given by
* the string <code>"" + <em>expression</em></code>. This extends Error,
* because you usually do not want to inadvertently trap an assertion failure.
*