Merge pull request #4176 from tschaub/remove-isdefandnotnull

Remove use of goog.isDefAndNotNull().
This commit is contained in:
Tim Schaub
2015-10-01 00:05:57 -06:00
45 changed files with 116 additions and 135 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ ol.geom.flat.interpolate.lineString =
pointY = flatCoordinates[offset + index * stride + 1];
}
}
if (goog.isDefAndNotNull(opt_dest)) {
if (opt_dest) {
opt_dest[0] = pointX;
opt_dest[1] = pointY;
return opt_dest;