add missing @override (#975)

* no effective code change: add missing @override in "io.ebean.*" package
* no effective code change: add missing @override in "io.ebeaninternal.api.*" package
* no effective code change: add missing @override in "io.ebeaninternal.server.*" package
* no effective code change: add missing @override in "io.ebeaninternal.util.*" package
* no effective code change: add missing @override in "io.ebeanservice.*" package
* no effective code change: add missing @override in "src/test/java/"
This commit is contained in:
Roland Praml
2017-02-24 00:01:25 +13:00
committed by Rob Bygrave
parent 43c978e41a
commit 40f5596837
300 changed files with 1492 additions and 12 deletions
@@ -23,7 +23,8 @@ public final class DeployUpdateParser extends DeployParser {
return null;
}
public String convertWord() {
@Override
public String convertWord() {
String dbWord = getDeployWord(word);
@@ -73,7 +74,8 @@ public final class DeployUpdateParser extends DeployParser {
}
}
public String getDeployWord(String expression) {
@Override
public String getDeployWord(String expression) {
if (expression.equalsIgnoreCase(beanDescriptor.getName())){
return beanDescriptor.getBaseTable();