From 82c5dcae45765d61f9af973bb3c02f878aa40804 Mon Sep 17 00:00:00 2001 From: Tim Pierce Date: Tue, 16 Sep 2014 22:09:34 -0400 Subject: [PATCH] 3705: drop unnecessary 'items' from BlockWorkList --- services/keepstore/block_work_list.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/keepstore/block_work_list.go b/services/keepstore/block_work_list.go index 2bd1583c4c..4c5aeb1803 100644 --- a/services/keepstore/block_work_list.go +++ b/services/keepstore/block_work_list.go @@ -85,7 +85,6 @@ package main import "container/list" type BlockWorkList struct { - items *list.List newlist chan *list.List NextItem chan interface{} } @@ -95,7 +94,6 @@ type BlockWorkList struct { // func NewBlockWorkList() *BlockWorkList { b := BlockWorkList{ - items: nil, newlist: make(chan *list.List), NextItem: make(chan interface{}), } -- 2.30.2