Removed duplicate line that gets the filter value

This commit is contained in:
Matt Walker
2012-10-15 09:47:10 +01:00
parent 8f860e516e
commit bccd0824b9

View File

@@ -156,7 +156,6 @@ OpenLayers.Filter.Comparison = OpenLayers.Class(OpenLayers.Filter, {
result = regexp.test(got);
break;
case OpenLayers.Filter.Comparison.IS_NULL:
var got = context[this.property];
result = (got === null || got === undefined);
break;
}