aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/Void.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-10-18 10:41:56 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-10-18 10:41:56 +0000
commit2047d8e479efea09e4f812662fc38e57f9f37226 (patch)
tree13de505ee49b7bb4b843feeac949d8748d7360ff /libjava/java/lang/Void.java
parent36071b5cbeaf23f0ac98cd313ba7d29d016b5ca2 (diff)
downloadgcc-2047d8e479efea09e4f812662fc38e57f9f37226.zip
gcc-2047d8e479efea09e4f812662fc38e57f9f37226.tar.gz
gcc-2047d8e479efea09e4f812662fc38e57f9f37226.tar.bz2
Math.java, [...]: Reworked import statements, HTML in javadocs and modifier orders.
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. From-SVN: r89207
Diffstat (limited to 'libjava/java/lang/Void.java')
-rw-r--r--libjava/java/lang/Void.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/libjava/java/lang/Void.java b/libjava/java/lang/Void.java
index b2d64dd..39094d7 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()
+ {
+ }
}