diff options
| author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 10:41:56 +0000 |
|---|---|---|
| committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 10:41:56 +0000 |
| commit | aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0 (patch) | |
| tree | 13de505ee49b7bb4b843feeac949d8748d7360ff /libjava/java/lang/Void.java | |
| parent | 2e98f1147826aed0074bd0c2d781a53424e7a36f (diff) | |
| download | gcc-aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0.tar.gz | |
2004-10-18 Michael Koch <konqueror@gmx.de>
* 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
Diffstat (limited to 'libjava/java/lang/Void.java')
| -rw-r--r-- | libjava/java/lang/Void.java | 10 |
1 files changed, 6 insertions, 4 deletions
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 <code>Void.TYPE</code> * (also available as <code>void.class</code>) can be supported for * reflection return types. * - * <p>This class could be Serializable, but that is up to Sun. + * <p>This class could be Serializable, but that is up to Sun.</p> * * @author Paul Fisher * @author John Keiser - * @author Eric Blake <ebb9@email.byu.edu> + * @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() + { + } } |
