提交 9b02c816 编写于 作者: J Joram Barrez

And removing static from the methods in the previous commit, no need for them to be static

上级 74e335ea
......@@ -892,7 +892,7 @@ public class DbSqlSession implements Session {
}
}
protected static boolean isUpgradeNeeded(String versionInDatabase) {
protected boolean isUpgradeNeeded(String versionInDatabase) {
if(ProcessEngine.VERSION.equals(versionInDatabase)) {
return false;
}
......@@ -918,7 +918,7 @@ public class DbSqlSession implements Session {
return true;
}
protected static String getCleanVersion(String versionString) {
protected String getCleanVersion(String versionString) {
Matcher matcher = CLEAN_VERSION_REGEX.matcher(versionString);
if(!matcher.find()) {
throw new ActivitiException("Illegal format for version: " + versionString);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册