aboutsummaryrefslogtreecommitdiffstats
path: root/bug
diff options
context:
space:
mode:
authorvince <vincetiu8@gmail.com>2020-08-27 20:09:55 +0800
committervince <vincetiu8@gmail.com>2020-08-27 20:11:24 +0800
commit98a1d831f0672f118ccded5411027e4aad4cae94 (patch)
tree42f4be835e56149998d57056bd548f56904ff938 /bug
parent8a4e4a1290bc49ea9ac196f96ff5140ddb871eba (diff)
downloadgit-bug-98a1d831f0672f118ccded5411027e4aad4cae94.tar.gz
Delete EquivalentBug function
Diffstat (limited to 'bug')
-rw-r--r--bug/bug.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/bug/bug.go b/bug/bug.go
index 3a770881..2ee89031 100644
--- a/bug/bug.go
+++ b/bug/bug.go
@@ -749,22 +749,3 @@ func (bug *Bug) Compile() Snapshot {
return snap
}
-
-// EquivalentBug returns true if two bugs are equal
-func EquivalentBug(expected, actual *Bug) bool {
- if len(expected.packs) != len(actual.packs) {
- return false
- }
-
- for i := range expected.packs {
- for j := range expected.packs[i].Operations {
- actual.packs[i].Operations[j].base().id = expected.packs[i].Operations[j].base().id
- }
- }
-
- if expected != actual {
- return false
- }
-
- return true
-}