Inadvertently checked in a change to BaseTypes in r2859. Undoing it.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@2860 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Schuyler Erle
2007-03-22 20:36:25 +00:00
parent 185d10f211
commit 27a423a5f8

View File

@@ -9,7 +9,7 @@ OpenLayers.Class = {
create: function() {
return function() {
if (!arguments || arguments[0] != OpenLayers.Class.isPrototype)
if (arguments && arguments[0] != OpenLayers.Class.isPrototype)
this.initialize.apply(this, arguments);
}
},