Clean up some Javadoc comments to remove warnings generated when Javadoc from Java 1.4.1 is used.

FYI, warnings like: This sentence is different from what will be interpreted as the first sentence in the
next major release (when that interpretation will be internationalized), which is: <snip/>


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137288 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-04-09 01:08:30 +00:00
parent e5c8e4a225
commit 082cde8df8
1 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@
* @author Travis Reeder
* @author Stephen Colebourne
* @since 2.0
* @version $Id: Fraction.java,v 1.2 2003/03/23 17:51:15 scolebourne Exp $
* @version $Id: Fraction.java,v 1.3 2003/04/09 01:08:30 ggregory Exp $
*/
public final class Fraction extends Number implements Serializable, Comparable {
@ -452,8 +452,8 @@ public Fraction negate() {
}
/**
* <p>Gets a fraction that is the positive equivalent
* (fraction >= 0 ? this : -fraction) of this one.</p>
* <p>Gets a fraction that is the positive equivalent of this one.</p>
* <p>More precisely: <pre>(fraction >= 0 ? this : -fraction)</pre></p>
*
* <p>The returned fraction is not reduced.</p>
*