Fix bug with osm bug layer

This commit is contained in:
vshcherb 2013-10-27 00:31:40 +02:00
parent 7878844e1f
commit c6e8e1c5c9

View file

@ -214,7 +214,9 @@ public class OsmBugsLayer extends OsmandMapLayer implements IContextMenuProvider
}
public void clearCache() {
data.clearCache();
if(data != null) {
data.clearCache();
}
}
private static String readText(XmlPullParser parser, String key) throws XmlPullParserException, IOException {