Browse Source

Remove unnecessary call of superclass constructor

See gh-42876
pull/42986/head
Yanming Zhou 1 year ago committed by Phillip Webb
parent
commit
4952fc7417
  1. 1
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java

1
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java

@ -760,7 +760,6 @@ public final class ConfigurationPropertyName implements Comparable<Configuration @@ -760,7 +760,6 @@ public final class ConfigurationPropertyName implements Comparable<Configuration
private final CharSequence[] resolved;
Elements(CharSequence source, int size, int[] start, int[] end, ElementType[] type, CharSequence[] resolved) {
super();
this.source = source;
this.size = size;
this.start = start;

Loading…
Cancel
Save