Skip to content

Commit 82e2dec

Browse files
author
Jessie Frazelle
committed
Merge pull request moby#15393 from azurezk/exportImage-toplevel
change exportImage to top-level func
2 parents 25f4f55 + a7c00bc commit 82e2dec

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

graph/export.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ func (s *TagStore) ImageExport(names []string, outStream io.Writer) error {
105105
return nil
106106
}
107107

108-
// FIXME: this should be a top-level function, not a class method
109108
func (s *TagStore) exportImage(name, tempdir string) error {
110109
for n := name; n != ""; {
111110
// temporary directory

pkg/parsers/parsers.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import (
1414

1515
// ParseHost parses the specified address and returns an address that will be used as the host.
1616
// Depending of the address specified, will use the defaultTCPAddr or defaultUnixAddr
17-
// FIXME: Change this not to receive default value as parameter
1817
func ParseHost(defaultTCPAddr, defaultUnixAddr, addr string) (string, error) {
1918
addr = strings.TrimSpace(addr)
2019
if addr == "" {

0 commit comments

Comments
 (0)