Skip to content

Commit

Permalink
add the lost @OverRide annotation of Config.
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlu-xcq committed Jul 31, 2021
1 parent 6c8046a commit c1b3d8c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,22 @@ protected void checkDefault() {
}
}

@Override
public String getVersion() {
return version;
}

@Override
public void setVersion(String version) {
this.version = version;
}

@Override
public String getGroup() {
return group;
}

@Override
public void setGroup(String group) {
this.group = group;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,12 @@ public static Class<?> determineInterfaceClass(String generic, String interfaceN
return null;
}

@Override
public String getInterface() {
return interfaceName;
}

@Override
public void setInterface(String interfaceName) {
this.interfaceName = interfaceName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public void init() {
serviceMetadata.generateServiceKey();
}

@Override
public synchronized void export() {
if (this.shouldExport() && !this.exported) {
this.init();
Expand Down

0 comments on commit c1b3d8c

Please sign in to comment.