No longer do we force re-parsing of request.responseText for WFS, GML, and GeoRSS layers. Thanks avlee for spotting this performance hit we've been taking since at least r174. r=crschmidt (closes #1428)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@6496 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2008-03-12 14:21:27 +00:00
parent cde39e98ae
commit 90d824041c
3 changed files with 3 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ OpenLayers.Layer.GML = OpenLayers.Class(OpenLayers.Layer.Vector, {
requestSuccess:function(request) {
var doc = request.responseXML;
if (!doc || request.fileType!="XML") {
if (!doc) {
doc = request.responseText;
}