That last bit sounded good, so lets add it to the class docs. Also, fixed a copy/paste comment.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@732 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Nathan Curtis
2008-08-16 00:14:48 +00:00
parent 95159a69d2
commit 85d7df6181
@@ -22,7 +22,8 @@
package com.threerings.stats.data;
/**
* Ensures that a particular stat has been set to a minimum value.
* Ensures that a particular stat has been set to a minimum value. If the value of the stat is
* already greater than or equal to the requested minimum, the stat is not modified.
*/
public class IntStatMinimumer extends StatModifier<IntStat>
{
@@ -32,7 +33,7 @@ public class IntStatMinimumer extends StatModifier<IntStat>
_minimum = minimum;
}
/** Constructs an empty IntStatIncrementer (for Streaming purposes). */
/** Constructs an empty IntStatMinimumer (for Streaming purposes). */
public IntStatMinimumer ()
{
}