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:
Henri Yandell 2006-12-22 19:29:53 +00:00
parent 03cc852bef
commit 37875137e9
1 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@
*/
package org.apache.commons.lang.math;
import java.io.Serializable;
import java.math.BigInteger;
/**
@ -34,7 +33,7 @@
* @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.