3705: drop unnecessary 'items' from BlockWorkList
authorTim Pierce <twp@curoverse.com>
Wed, 17 Sep 2014 02:09:34 +0000 (22:09 -0400)
committerTim Pierce <twp@curoverse.com>
Wed, 17 Sep 2014 02:09:34 +0000 (22:09 -0400)
services/keepstore/block_work_list.go

index 2bd1583c4cdae927af267db81e31afcdbd738ccd..4c5aeb1803942718fea8cc74415fb233baeb0ec8 100644 (file)
@@ -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{}),
        }