flesh out javadoc in Untap.java

This commit is contained in:
slapshot5
2012-01-10 14:21:51 +00:00
parent b6233bfa51
commit 5dc462c8bc

View File

@@ -36,7 +36,7 @@ public class Untap implements java.io.Serializable {
/** /**
* <p> * <p>
* addUntil. * Add a Command that will terminate an effect with "until <Player's> next untap".
* </p> * </p>
* *
* @param p * @param p
@@ -58,7 +58,7 @@ public class Untap implements java.io.Serializable {
/** /**
* <p> * <p>
* executeUntil. * Executes the termination of effects that apply "until <Player's> next untap".
* </p> * </p>
* *
* @param p * @param p
@@ -70,17 +70,6 @@ public class Untap implements java.io.Serializable {
} }
} }
/**
* <p>
* sizeUntil.
* </p>
*
* @return a int.
*/
public final int sizeUntil() {
return this.until.size();
}
private void execute(final CommandList c) { private void execute(final CommandList c) {
final int length = c.size(); final int length = c.size();
@@ -91,7 +80,9 @@ public class Untap implements java.io.Serializable {
/** /**
* <p> * <p>
* executeAt. * Handles all the hardcoded events that happen at the beginning of each Untap Phase.
*
* This will freeze the Stack at the start, and unfreeze the Stack at the end.
* </p> * </p>
*/ */
public final void executeAt() { public final void executeAt() {