Remove function bodies from externs

This commit is contained in:
Erik Timmers
2014-07-29 12:02:00 +02:00
parent 77674c6728
commit 077bcdd778
2 changed files with 7 additions and 12 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ var VBArray = function(safeArray) {};
/**
* @return {number}
*/
VBArray.prototype.dimensions = function() {return 0;};
VBArray.prototype.dimensions = function() {};
/**
@@ -36,7 +36,7 @@ VBArray.prototype.lbound = function(opt_dimension) {};
/**
* @return {Array.<number>}
*/
VBArray.prototype.toArray = function() {return null;};
VBArray.prototype.toArray = function() {};
/**