[Minor] JavaDoc correction

This commit is contained in:
Robert von Burg 2017-08-18 10:00:41 +02:00
parent 2863a5746b
commit 07ab2fa971
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public enum State {
}
/**
* @return true if the state is {@link #CLOSED}
* @return true if the state is {@link #EXECUTED} or {@link #CLOSED}
*/
public boolean inClosedPhase() {
return this == EXECUTED || this == CLOSED;