This commit is contained in:
Stephane Nicoll 2019-10-29 09:02:25 +01:00
parent 5e813f60b9
commit d6d32ec01d
2 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@ public final class EndpointId {
private static final Pattern WARNING_PATTERN = Pattern.compile("[\\.\\-]+");
private static final String MIGRATE_LEGACY_NAMES_PROPRTY = "management.endpoints.migrate-legacy-ids";
private static final String MIGRATE_LEGACY_NAMES_PROPERTY = "management.endpoints.migrate-legacy-ids";
private final String value;
@ -130,7 +130,7 @@ public final class EndpointId {
}
private static String migrateLegacyId(Environment environment, String value) {
if (environment.getProperty(MIGRATE_LEGACY_NAMES_PROPRTY, Boolean.class, false)) {
if (environment.getProperty(MIGRATE_LEGACY_NAMES_PROPERTY, Boolean.class, false)) {
return value.replace(".", "");
}
return value;

View File

@ -158,12 +158,12 @@ class PropertyDescriptorResolver {
private ExecutableElement findBoundConstructor() {
ExecutableElement boundConstructor = null;
for (ExecutableElement canidate : this.constructors) {
if (!canidate.getParameters().isEmpty()) {
for (ExecutableElement candidate : this.constructors) {
if (!candidate.getParameters().isEmpty()) {
if (boundConstructor != null) {
return null;
}
boundConstructor = canidate;
boundConstructor = candidate;
}
}
return boundConstructor;