Minor. Add isComputing to DeferredType

This commit is contained in:
Stanislav Erokhin
2015-12-08 15:00:31 +03:00
parent 11410000b4
commit 10a13e737e
3 changed files with 11 additions and 0 deletions
@@ -77,6 +77,10 @@ public class DeferredType extends DelegatingType implements LazyType {
this.lazyValue = lazyValue;
}
public boolean isComputing() {
return lazyValue.isComputing();
}
public boolean isComputed() {
return lazyValue.isComputed();
}