Skip to content

Commit

Permalink
Fix 'svg' suffix in ImageResourceCacheClassPath
Browse files Browse the repository at this point in the history
  • Loading branch information
andi-huber committed Aug 31, 2016
1 parent 37684f7 commit 795805e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ public class ImageResourceCacheClassPath implements ImageResourceCache {

private static final long serialVersionUID = 1L;

private static final List<String> IMAGE_SUFFICES = Arrays.asList("png", "gif", "jpeg", "jpg", ".svg");
private static final List<String> IMAGE_SUFFICES = Arrays.asList("png", "gif", "jpeg", "jpg", "svg");
private static final String FALLBACK_IMAGE = "Default.png";

private final Map<ImageResourceCacheKey, ResourceReference> resourceReferenceByKey = Maps.newConcurrentMap();
Expand Down

0 comments on commit 795805e

Please sign in to comment.