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:
Stephane Nicoll 2015-08-03 10:46:33 +02:00
parent b17809b4e7
commit 15442b9667
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ public class ResourceProperties implements ResourceLoaderAware {
return result;
}
public List<Resource> getFaviconLocations() {
List<Resource> getFaviconLocations() {
List<Resource> locations = new ArrayList<Resource>(
CLASSPATH_RESOURCE_LOCATIONS.length + 1);
if (this.resourceLoader != null) {