Again, always on the variable, not the method.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@703 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-08-04 12:59:43 +00:00
parent 12bd9e9db7
commit d6c55a091f
@@ -159,10 +159,9 @@ public final class StatSet extends DSet<Stat>
* @exception ClassCastException thrown if the registered type of the specified stat is not * @exception ClassCastException thrown if the registered type of the specified stat is not
* an {@link SetStat} parameterized on the given type. * an {@link SetStat} parameterized on the given type.
*/ */
@SuppressWarnings("unchecked")
public <T> void addToSetStat (Stat.Type type, T value) public <T> void addToSetStat (Stat.Type type, T value)
{ {
SetStat<T> stat = (SetStat<T>)getStat(type); @SuppressWarnings("unchecked") SetStat<T> stat = (SetStat<T>)getStat(type);
if (stat == null) { if (stat == null) {
stat = (SetStat<T>)type.newStat(); stat = (SetStat<T>)type.newStat();
stat.add(value); stat.add(value);
@@ -233,10 +232,9 @@ public final class StatSet extends DSet<Stat>
* @exception ClassCastException thrown if the registered type of the specified stat is not an * @exception ClassCastException thrown if the registered type of the specified stat is not an
* {@link SetStat}. * {@link SetStat}.
*/ */
@SuppressWarnings("unchecked")
public int getSetStatSize (Stat.Type type) public int getSetStatSize (Stat.Type type)
{ {
SetStat stat = (SetStat)getStat(type); @SuppressWarnings("unchecked") SetStat stat = (SetStat)getStat(type);
return (stat == null ? 0 : stat.size()); return (stat == null ? 0 : stat.size());
} }
@@ -244,10 +242,9 @@ public final class StatSet extends DSet<Stat>
* Returns true if the specified {@link SetStat} contains the specified value, false * Returns true if the specified {@link SetStat} contains the specified value, false
* otherwise. * otherwise.
*/ */
@SuppressWarnings("unchecked")
public <T> boolean containsValue (Stat.Type type, T value) public <T> boolean containsValue (Stat.Type type, T value)
{ {
SetStat<T> stat = (SetStat<T>)getStat(type); @SuppressWarnings("unchecked") SetStat<T> stat = (SetStat<T>)getStat(type);
return (stat == null) ? false : stat.contains(value); return (stat == null) ? false : stat.contains(value);
} }