This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ce3bd9  MATH-1468: Moved "Decimal64" and "Decimal64Field" to "test" 
area.
6ce3bd9 is described below

commit 6ce3bd901fac1baa063b98d2e9897f443a0f640e
Author: Samy Badjoudj <samy.badjo...@gmail.com>
AuthorDate: Sun May 30 11:07:54 2021 +0200

    MATH-1468: Moved "Decimal64" and "Decimal64Field" to "test" area.
    
    Nit: Removed "final" (a "static" method is not polymorphic).
---
 .../java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64.java    | 0
 .../org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java    | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64.java
 
b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64.java
similarity index 100%
rename from 
commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64.java
rename to 
commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64.java
diff --git 
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
 
b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
similarity index 97%
rename from 
commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
rename to 
commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
index 647c88c..18cf384 100644
--- 
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
+++ 
b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ode/nonstiff/Decimal64Field.java
@@ -40,7 +40,7 @@ public class Decimal64Field implements Field<Decimal64> {
      *
      * @return the unique instance of this class
      */
-    public static final Decimal64Field getInstance() {
+    public static Decimal64Field getInstance() {
         return INSTANCE;
     }
 

Reply via email to