made permanent tokens from framework compliant with new abstract superclass

This commit is contained in:
Marc Zwart 2018-04-02 17:47:04 +02:00
parent 2d922cb6af
commit 03eb170a04
341 changed files with 2690 additions and 40 deletions

View file

@ -48,7 +48,7 @@ public class InsectToken extends Token {
}
public InsectToken() {
this(null);
this((String)null);
}
public InsectToken(String setCode) {
@ -62,4 +62,12 @@ public class InsectToken extends Token {
availableImageSetCodes = tokenImageSets;
}
public InsectToken(final InsectToken token) {
super(token);
}
public InsectToken copy() {
return new InsectToken(this);
}
}