summaryrefslogtreecommitdiff
path: root/java/lang/reflect/Array.java
diff options
context:
space:
mode:
authorGeoff Berry <gcb@gnu.org>1998-07-24 20:37:33 +0000
committerGeoff Berry <gcb@gnu.org>1998-07-24 20:37:33 +0000
commit198164ea07ef06fc62babb653842cff4efe64f34 (patch)
tree59db66484dd320bf0fe890e254825aaf9137b3e2 /java/lang/reflect/Array.java
parent2a2a2940cfb388eabed89da01ab21ac354f102dc (diff)
downloadclasspath-198164ea07ef06fc62babb653842cff4efe64f34.tar.gz
Remove unnecessary semicolon from end of constructor declaration
(no I'm not that picky, but guavac gives me warnings).
Diffstat (limited to 'java/lang/reflect/Array.java')
-rw-r--r--java/lang/reflect/Array.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/lang/reflect/Array.java b/java/lang/reflect/Array.java
index c9fc7ba13..247379af3 100644
--- a/java/lang/reflect/Array.java
+++ b/java/lang/reflect/Array.java
@@ -51,7 +51,7 @@ package java.lang.reflect;
**/
public final class Array {
// Make this class uninstantiable.
- private Array() {};
+ private Array() {}
/** Creates a new single-dimensioned array. Will return null if the array is Void.
** @param componentType the type of the array to create.
@@ -517,4 +517,4 @@ public final class Array {
}
private static native Object createObjectArray(Class type, int dim);
-} \ No newline at end of file
+}