use the annotation meta data in problem reporting
This commit is contained in:
parent
1c5e1e04e0
commit
1a7ec7daf2
|
|
@ -144,7 +144,7 @@ final class ConfigurationClass {
|
||||||
|
|
||||||
public FinalConfigurationProblem() {
|
public FinalConfigurationProblem() {
|
||||||
super(String.format("@Configuration class '%s' may not be final. Remove the final modifier to continue.",
|
super(String.format("@Configuration class '%s' may not be final. Remove the final modifier to continue.",
|
||||||
getSimpleName()), new Location(getResource(), ConfigurationClass.this));
|
getSimpleName()), new Location(getResource(), getMetadata()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -155,7 +155,7 @@ final class ConfigurationClass {
|
||||||
public OverloadedMethodProblem(String methodName, int count) {
|
public OverloadedMethodProblem(String methodName, int count) {
|
||||||
super(String.format("@Configuration class '%s' has %s overloaded factory methods of name '%s'. " +
|
super(String.format("@Configuration class '%s' has %s overloaded factory methods of name '%s'. " +
|
||||||
"Only one factory method of the same name allowed.",
|
"Only one factory method of the same name allowed.",
|
||||||
getSimpleName(), count, methodName), new Location(getResource(), ConfigurationClass.this));
|
getSimpleName(), count, methodName), new Location(getResource(), getMetadata()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue