Merge pull request #1633 from twpayne/no-fail-in-topojson

Don't fail when no featues are found in ol.format.TopoJSON
This commit is contained in:
Tom Payne
2014-02-04 04:39:42 -08:00

View File

@@ -302,7 +302,6 @@ ol.format.TopoJSON.prototype.readFeaturesFromObject = function(object) {
}
return features;
} else {
goog.asserts.fail();
return [];
}
};