Avoid wrong meta-data
Make `getFaviconLocations` package private so that it's not (wrongly) exposed in the meta-data. Closes gh-3647
This commit is contained in:
parent
b17809b4e7
commit
15442b9667
|
|
@ -116,7 +116,7 @@ public class ResourceProperties implements ResourceLoaderAware {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Resource> getFaviconLocations() {
|
List<Resource> getFaviconLocations() {
|
||||||
List<Resource> locations = new ArrayList<Resource>(
|
List<Resource> locations = new ArrayList<Resource>(
|
||||||
CLASSPATH_RESOURCE_LOCATIONS.length + 1);
|
CLASSPATH_RESOURCE_LOCATIONS.length + 1);
|
||||||
if (this.resourceLoader != null) {
|
if (this.resourceLoader != null) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue