internal/xcoff: remove blank lines after final return statements

Change-Id: I869ebcd9a134d0010e419dc51b6f91eddeaa0bbd
GitHub-Last-Rev: 0fc44edaea
GitHub-Pull-Request: golang/go#60764
Reviewed-on: https://go-review.googlesource.com/c/go/+/502835
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Jes Cok 2023-06-13 14:13:01 +00:00 committed by Gopher Robot
parent 8ffc931eae
commit 711ef8bc72
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)
}