rename getters

This commit is contained in:
Mike G 2020-09-03 10:15:07 -04:00
parent faab567095
commit 1de1ebb794
1 changed files with 2 additions and 2 deletions

View File

@ -60,11 +60,11 @@ public abstract class BaseTask {
mySchemaVersion = theSchemaVersion;
}
public String getMyProductVersion() {
public String getProductVersion() {
return myProductVersion;
}
public String getMySchemaVersion() {
public String getSchemaVersion() {
return mySchemaVersion;
}