fix import

This commit is contained in:
Athou
2014-09-11 15:37:09 +02:00
parent 76c0abaa22
commit 74e5c24fdc

View File

@@ -3,7 +3,7 @@ package com.commafeed.backend.feed;
import java.util.Collections;
import java.util.Map;
import com.google.gwt.thirdparty.guava.common.collect.Maps;
import com.google.common.collect.Maps;
public class HtmlEntities {
public static final Map<String, String> NUMERIC_MAPPING = Collections.unmodifiableMap(loadMap());
@@ -260,7 +260,7 @@ public class HtmlEntities {
map.put("&zeta;", "&#950;");
map.put("&zwj;", "&#8205;");
map.put("&zwnj;", "&#8204;");
return map;
}
}