This commit is contained in:
Andrea Luzzardi
2013-01-29 13:50:27 -08:00
parent f8f9285cca
commit 94b1cf4be3
2 changed files with 7 additions and 9 deletions
-2
View File
@@ -117,7 +117,6 @@ func NewFromDirectory(root string) (*Docker, error) {
return docker, nil
}
type History []*Container
func (history *History) Len() int {
@@ -140,4 +139,3 @@ func (history *History) Add(container *Container) {
*history = append(*history, container)
sort.Sort(history)
}