Remove unneeded code from buildSrc

This commit is contained in:
Peter Osterlund
2019-08-11 11:40:31 +02:00
parent 2a01797dfa
commit 4230847224
13 changed files with 23 additions and 2750 deletions

View File

@@ -45,19 +45,4 @@ public class PgnToken {
this.type = type;
this.token = token;
}
/** PGN parser visitor interface. */
public interface PgnTokenReceiver {
/** If this method returns false, the object needs a full re-initialization, using clear() and processToken(). */
boolean isUpToDate();
/** Clear object state. */
void clear();
/** Update object state with one token from a PGN game. */
void processToken(GameTree.Node node, int type, String token);
/** Change current move number. */
void setCurrent(GameTree.Node node);
}
}