Removing the Serializable implements. As far as I can tell, Number has been serializable since at the least Java 1.2. (Reported by FindBugs)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@489733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
03cc852bef
commit
37875137e9
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
package org.apache.commons.lang.math;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
|
||||
/**
|
||||
|
@ -34,7 +33,7 @@ import java.math.BigInteger;
|
|||
* @since 2.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class Fraction extends Number implements Serializable, Comparable {
|
||||
public final class Fraction extends Number implements Comparable {
|
||||
|
||||
/**
|
||||
* Required for serialization support. Lang version 2.0.
|
||||
|
|
Loading…
Reference in New Issue