Fix failure of auto-installing more than one library

This commit is contained in:
huanghongxun 2019-08-18 10:27:48 +08:00
parent 71c0cede24
commit c11bbf8836

View File

@ -190,6 +190,7 @@ public abstract class Task<T> {
*/
public Task<T> storeTo(Consumer<T> action) {
this.resultConsumer = action;
action.accept(getResult());
return this;
}