diff options
Diffstat (limited to 'entities/bug/bug.go')
-rw-r--r-- | entities/bug/bug.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/entities/bug/bug.go b/entities/bug/bug.go index ab873ed8..6c440433 100644 --- a/entities/bug/bug.go +++ b/entities/bug/bug.go @@ -13,7 +13,7 @@ import ( ) var _ Interface = &Bug{} -var _ entity.Interface[*Snapshot, Operation] = &Bug{} +var _ entity.Interface[Operation, *Snapshot] = &Bug{} // 1: original format // 2: no more legacy identities @@ -34,7 +34,7 @@ var def = dag.Definition{ var ClockLoader = dag.ClockLoader(def) type Interface interface { - entity.Interface[*Snapshot, Operation] + entity.Interface[Operation, *Snapshot] } // Bug holds the data of a bug thread, organized in a way close to |