dogfood: fix missing override

Note: the rule is disabled for pmd-xml, refs #1074
This commit is contained in:
Andreas Dangel
2018-06-16 17:48:36 +02:00
parent 2c987a2688
commit 5a7bbe19a2
458 changed files with 1901 additions and 257 deletions

View File

@ -18,7 +18,7 @@ public class ObjectiveCTokenManager implements TokenManager {
/**
* Creates a new Objective-C Token Manager from the given source code.
*
*
* @param source
* the source code
*/
@ -26,6 +26,7 @@ public class ObjectiveCTokenManager implements TokenManager {
tokenManager = new ObjectiveCParserTokenManager(new SimpleCharStream(source));
}
@Override
public Object getNextToken() {
return tokenManager.getNextToken();
}