From 9af90df87691dbd03d44ff469112e23dde9aa5e5 Mon Sep 17 00:00:00 2001 From: warrenl Date: Wed, 23 Jun 1999 12:24:59 +0000 Subject: * java/net/DatagramSocketImpl.java (localPort): Fixed typo to match JDK. * java/net/natPlainDatagramSocketImpl.cc (bind): ditto. * java/text/ChoiceFormat.java (nextDouble(double, boolean)): Method is not final per JDK. * java/util/PropertyResourceBundle.java (handleGetObject): Method is public per JDK. * java/util/zip/DataFormatException.java: Class extends Exception. * java/util/zip/Deflater.java (finalize): Method is protected per JDK. * java/util/zip/ZipEntry.java: Class implements ZipConstants. * java/util/zip/ZipInputStream.java: ditto. (closeEntry): Changed method name to match JDK spec. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27717 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/text/ChoiceFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libjava/java/text') diff --git a/libjava/java/text/ChoiceFormat.java b/libjava/java/text/ChoiceFormat.java index bed62a75e53..bd0ccabd657 100644 --- a/libjava/java/text/ChoiceFormat.java +++ b/libjava/java/text/ChoiceFormat.java @@ -182,7 +182,7 @@ public class ChoiceFormat extends NumberFormat return nextDouble (d, true); } - public static final double nextDouble (double d, boolean next) + public static double nextDouble (double d, boolean next) { if (Double.isInfinite(d) || Double.isNaN(d)) return d; -- cgit v1.2.3