aboutsummaryrefslogtreecommitdiffstats
path: root/bug/operation_pack.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/operation_pack.go')
-rw-r--r--bug/operation_pack.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/bug/operation_pack.go b/bug/operation_pack.go
index e3d64e72..21376b9c 100644
--- a/bug/operation_pack.go
+++ b/bug/operation_pack.go
@@ -15,6 +15,10 @@ func (opp *OperationPack) Append(op Operation) {
opp.Operations = append(opp.Operations, op)
}
+func (opp *OperationPack) IsEmpty() bool {
+ return len(opp.Operations) == 0
+}
+
func (opp *OperationPack) IsValid() bool {
- return len(opp.Operations) > 0
+ return !opp.IsEmpty()
}