Mercurial > pub > ImplabNet
diff Implab/Safe.cs @ 96:daffa72a1cec v2
Added the chaining method to the non-generic IPromise
author | cin |
---|---|
date | Thu, 30 Oct 2014 10:06:16 +0300 |
parents | 0141a165d032 |
children | 2573b562e328 |
line wrap: on
line diff
--- a/Implab/Safe.cs Wed Oct 29 18:54:46 2014 +0300 +++ b/Implab/Safe.cs Thu Oct 30 10:06:16 2014 +0300 @@ -58,7 +58,7 @@ } [DebuggerStepThrough] - public static IPromise<T> InvokePromise<T>(Action action) { + public static IPromise InvokePromise(Action action) { ArgumentNotNull(action, "action"); var p = new Promise<object>();