Fix bad interface naming

This commit is contained in:
Brady
2018-10-30 17:30:03 -05:00
parent 15e91c7c7c
commit 3d03f15749
5 changed files with 5 additions and 5 deletions

View File

@@ -27,6 +27,6 @@ public interface IQuantizedChildTaskRelationship<T extends ITaskNodeBase> extend
default int quantityCompleted() {
// TODO: Resolve this cast, should QuantizedTask implement ClaimProvider?
return ((ClaimProvider) childTask()).quantityCompletedForParent(this);
return ((IClaimProvider) childTask()).quantityCompletedForParent(this);
}
}