jQuery: remove unused resolve

This commit is contained in:
John Reilly
2014-03-24 12:59:48 +00:00
parent 4085f85dc4
commit a8890740fc

8
jquery/jquery.d.ts vendored
View File

@@ -484,14 +484,6 @@ interface JQueryDeferred<T> extends JQueryPromise<T> {
*/
resolve(value?: T, ...args: any[]): JQueryDeferred<T>;
// COMMENTED OUT AS MAKES resolve LESS USEFUL - PERHAPS REMOVE ENTIRELY LATER
/**
* Resolve a Deferred object and call any doneCallbacks with the given args.
*
* @param args Optional arguments that are passed to the doneCallbacks.
*/
//resolve(...args: any[]): JQueryDeferred<T>;
/**
* Resolve a Deferred object and call any doneCallbacks with the given context and args.
*