From 473acc61c8392dc7ae303d91568e179c4f105a76 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 2 Jul 2019 12:12:53 +0200 Subject: add black list --- .../tests/generated_identifier_conflict/bugreport.go | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 vendor/github.com/golang/mock/mockgen/tests/generated_identifier_conflict/bugreport.go (limited to 'vendor/github.com/golang/mock/mockgen/tests/generated_identifier_conflict/bugreport.go') diff --git a/vendor/github.com/golang/mock/mockgen/tests/generated_identifier_conflict/bugreport.go b/vendor/github.com/golang/mock/mockgen/tests/generated_identifier_conflict/bugreport.go deleted file mode 100644 index 77af43d..0000000 --- a/vendor/github.com/golang/mock/mockgen/tests/generated_identifier_conflict/bugreport.go +++ /dev/null @@ -1,16 +0,0 @@ -//go:generate mockgen -destination bugreport_mock.go -package bugreport -source=bugreport.go - -package bugreport - -type Example interface { - // _m and _mr were used by the buggy code: the '_' prefix was there hoping - // that no one will use method argument names starting with '_' reducing - // the chance of collision with generated identifiers. - // m and mr are used by the bugfixed new code, the '_' prefix has been - // removed because the new code generator changes the names of the - // generated identifiers in case they would collide with identifiers - // coming from argument names. - Method(_m, _mr, m, mr int) - - VarargMethod(_s, _x, a, ret int, varargs ...int) -} -- cgit v1.2.3