Browse Source

Merge pull request #42876 from quaff

* pr/42876:
  Remove unnecessary call of superclass constructor

Closes gh-42876
pull/42986/head
Phillip Webb 1 year ago
parent
commit
9d6cfba278
  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
private final CharSequence[] resolved; private final CharSequence[] resolved;
Elements(CharSequence source, int size, int[] start, int[] end, ElementType[] type, CharSequence[] resolved) { Elements(CharSequence source, int size, int[] start, int[] end, ElementType[] type, CharSequence[] resolved) {
super();
this.source = source; this.source = source;
this.size = size; this.size = size;
this.start = start; this.start = start;

Loading…
Cancel
Save