From 36030a9a8b26b189eecea2611933b1d9331c28b5 Mon Sep 17 00:00:00 2001 From: Shijiang Wei Date: Sun, 30 Aug 2015 21:48:03 +0800 Subject: [PATCH] Add ability to add multiple tags with docker build Signed-off-by: Shijiang Wei --- opts/opts.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/opts/opts.go b/opts/opts.go index 46adef1d85..ebfcfd1fc7 100644 --- a/opts/opts.go +++ b/opts/opts.go @@ -85,7 +85,6 @@ func (opts *ListOpts) Delete(key string) { // GetMap returns the content of values in a map in order to avoid // duplicates. -// FIXME: can we remove this? func (opts *ListOpts) GetMap() map[string]struct{} { ret := make(map[string]struct{}) for _, k := range *opts.values { @@ -95,7 +94,6 @@ func (opts *ListOpts) GetMap() map[string]struct{} { } // GetAll returns the values of slice. -// FIXME: Can we remove this? func (opts *ListOpts) GetAll() []string { return (*opts.values) }