diff options
Diffstat (limited to 'libjava/java/text/Collator.java')
-rw-r--r-- | libjava/java/text/Collator.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libjava/java/text/Collator.java b/libjava/java/text/Collator.java index 76fc08da73f..5453372c5bc 100644 --- a/libjava/java/text/Collator.java +++ b/libjava/java/text/Collator.java @@ -1,6 +1,6 @@ // Collator.java - Locale-sensitive string comparison. -/* Copyright (C) 1999 Red Hat, Inc. +/* Copyright (C) 1999, 2000 Red Hat, Inc. This file is part of libgcj. @@ -56,6 +56,11 @@ public abstract class Collator implements Cloneable, Serializable return compare (source, target) == 0; } + public Object clone () + { + return super.clone (); + } + public static synchronized Locale[] getAvailableLocales () { // FIXME. |