From a7cd35389d65b31fdaba1713f57a223df54f55bb Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sat, 26 Jul 2008 20:00:29 +0000 Subject: [PATCH] reverting a return type changed inadvertently git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@680036 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/math/complex/ComplexFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/commons/math/complex/ComplexFormat.java b/src/java/org/apache/commons/math/complex/ComplexFormat.java index 2adad36b0..d9135b104 100644 --- a/src/java/org/apache/commons/math/complex/ComplexFormat.java +++ b/src/java/org/apache/commons/math/complex/ComplexFormat.java @@ -216,7 +216,7 @@ public class ComplexFormat extends CompositeFormat { * Returns the default complex format for the current locale. * @return the default complex format. */ - public static CompositeFormat getInstance() { + public static ComplexFormat getInstance() { return getInstance(Locale.getDefault()); }