Remove accidentally-left-behind comments

This commit is contained in:
Andrew Stewart 2015-07-14 11:32:54 -07:00
parent f14ac10c95
commit 3451932bde
2 changed files with 0 additions and 16 deletions

View File

@ -29,14 +29,6 @@ Utils.subclass(Basestar, EventEmitter);
*/ */
Basestar.prototype.proxyMethods = Utils.proxyFunctionsToObject; Basestar.prototype.proxyMethods = Utils.proxyFunctionsToObject;
// Public: Triggers a callback and emits an event with provided data
//
// event - name of event to be triggered
// callback - callback function to be triggered
// ...data - additional arguments to be passed to both event/callback
//
// Returns nothing
/** /**
* Triggers the provided callback, and emits an event with the provided data. * Triggers the provided callback, and emits an event with the provided data.
* *

View File

@ -178,14 +178,6 @@ var Utils = module.exports = {
return fallback; return fallback;
}, },
// Public: Given a name, and an array of existing names, returns a unique
// name.
//
// name - name that"s colliding with existing names
// arr - array of existing names
//
// Returns the new name as a string
/** /**
* Given a name, and an array of existing names, returns a unique new name * Given a name, and an array of existing names, returns a unique new name
* *