internal/xcoff: remove blank lines after final return statements

For NewArchive,  Archive'GetFile.
This commit is contained in:
Jes Cok 2023-06-13 19:06:33 +08:00
parent 1fd3cc7cd0
commit 0fc44edaea
1 changed files with 0 additions and 2 deletions

View File

@ -211,7 +211,6 @@ func NewArchive(r io.ReaderAt) (*Archive, error) {
}
return arch, nil
}
// GetFile returns the XCOFF file defined by member name.
@ -224,5 +223,4 @@ func (arch *Archive) GetFile(name string) (*File, error) {
}
}
return nil, fmt.Errorf("unknown member %s in archive", name)
}