forked from phoedos/pmd
Add GenericToken.getKind() to interface
This commit is contained in:
@ -56,6 +56,11 @@ public class ScalaTokenAdapter implements GenericToken {
|
||||
return token.pos().endColumn() + 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getKind() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ScalaTokenAdapter{"
|
||||
|
Reference in New Issue
Block a user