From aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0 Mon Sep 17 00:00:00 2001 From: mkoch Date: Mon, 18 Oct 2004 10:41:56 +0000 Subject: 2004-10-18 Michael Koch * java/lang/Math.java, java/lang/Package.java, java/lang/Runtime.java, java/lang/StrictMath.java, java/lang/System.java, java/lang/Thread.java, java/lang/ThreadLocal.java, java/lang/Void.java: Reworked import statements, HTML in javadocs and modifier orders. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89207 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/lang/Void.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libjava/java/lang/Void.java') diff --git a/libjava/java/lang/Void.java b/libjava/java/lang/Void.java index b2d64dd5b72..39094d72244 100644 --- a/libjava/java/lang/Void.java +++ b/libjava/java/lang/Void.java @@ -35,19 +35,19 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - package java.lang; + /** * Void is a placeholder class so that the variable Void.TYPE * (also available as void.class) can be supported for * reflection return types. * - *

This class could be Serializable, but that is up to Sun. + *

This class could be Serializable, but that is up to Sun.

* * @author Paul Fisher * @author John Keiser - * @author Eric Blake + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.1 * @status updated to 1.4 */ @@ -62,5 +62,7 @@ public final class Void /** * Void is non-instantiable. */ - private Void() { } + private Void() + { + } } -- cgit v1.2.1