Commit 37fc8ed9 authored by Kirill Smelkov's avatar Kirill Smelkov

. (some staticcheck)

parent 6ad0052c
...@@ -362,7 +362,7 @@ func (S PPTreeSubSet) verify() { ...@@ -362,7 +362,7 @@ func (S PPTreeSubSet) verify() {
} }
defer func() { defer func() {
if badv != nil { if badv != nil {
emsg := fmt.Sprintf("S.verify: fail:\n\n") emsg := "S.verify: fail:\n\n"
for _, bad := range badv { for _, bad := range badv {
emsg += fmt.Sprintf("- %s\n", bad) emsg += fmt.Sprintf("- %s\n", bad)
} }
......
...@@ -305,7 +305,7 @@ func (S *RangedKeySet) verify() { ...@@ -305,7 +305,7 @@ func (S *RangedKeySet) verify() {
} }
defer func() { defer func() {
if badv != nil { if badv != nil {
emsg := fmt.Sprintf("S.verify: fail:\n\n") emsg := "S.verify: fail:\n\n"
for _, bad := range badv { for _, bad := range badv {
emsg += fmt.Sprintf("- %s\n", bad) emsg += fmt.Sprintf("- %s\n", bad)
} }
......
...@@ -116,7 +116,7 @@ func NewT(t *testing.T) *T { ...@@ -116,7 +116,7 @@ func NewT(t *testing.T) *T {
// control does not say we need the object to stay in the cache. // control does not say we need the object to stay in the cache.
// XXX place // XXX place
type tZODBCacheEverything struct{} type tZODBCacheEverything struct{}
func (_ *tZODBCacheEverything) PCacheClassify(_ zodb.IPersistent) zodb.PCachePolicy { func (*tZODBCacheEverything) PCacheClassify(_ zodb.IPersistent) zodb.PCachePolicy {
return zodb.PCachePinObject | zodb.PCacheKeepState return zodb.PCachePinObject | zodb.PCacheKeepState
} }
......
...@@ -1574,7 +1574,6 @@ func assertΔTtail(t *testing.T, subj string, δbtail *ΔBtail, tj *xbtreetest.C ...@@ -1574,7 +1574,6 @@ func assertΔTtail(t *testing.T, subj string, δbtail *ΔBtail, tj *xbtreetest.C
vδToid = δTtail.vδT vδToid = δTtail.vδT
} }
l = len(vδToid)
var vat []zodb.Tid var vat []zodb.Tid
var vδT []map[Key]Δstring var vδT []map[Key]Δstring
atPrev := t0.At atPrev := t0.At
......
...@@ -729,7 +729,7 @@ type blkPinState struct { ...@@ -729,7 +729,7 @@ type blkPinState struct {
// from ZODB right after that. // from ZODB right after that.
type zodbCacheControl struct {} type zodbCacheControl struct {}
func (_ *zodbCacheControl) PCacheClassify(obj zodb.IPersistent) zodb.PCachePolicy { func (*zodbCacheControl) PCacheClassify(obj zodb.IPersistent) zodb.PCachePolicy {
switch obj.(type) { switch obj.(type) {
// don't let ZBlk*/ZData to pollute the cache // don't let ZBlk*/ZData to pollute the cache
case *ZBlk0: case *ZBlk0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment