Index: lib/src/log.dart |
diff --git a/lib/src/log.dart b/lib/src/log.dart |
index a235f05bca35d3a070b1ac047ddf239b39cef416..0bbf6e00a475a198fa4b9f0e2dc18cd7367b2775 100644 |
--- a/lib/src/log.dart |
+++ b/lib/src/log.dart |
@@ -399,7 +399,8 @@ void dumpTranscript() { |
/// [progress]) that cancels the progress animation, although the total time |
/// will still be printed once it finishes. If [fine] is passed, the progress |
/// information will only be visible at [Level.FINE]. |
-Future progress(String message, Future callback(), {bool fine: false}) { |
+Future/*<T>*/ progress/*<T>*/(String message, Future/*<T>*/ callback(), |
+ {bool fine: false}) { |
_stopProgress(); |
var progress = new Progress(message, fine: fine); |