From 711ef8bc725037e95ad78ce61b8679fdd2657897 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Tue, 13 Jun 2023 14:13:01 +0000 Subject: [PATCH] internal/xcoff: remove blank lines after final return statements Change-Id: I869ebcd9a134d0010e419dc51b6f91eddeaa0bbd GitHub-Last-Rev: 0fc44edaeafcc2042e0fe57c8c41b4f60d4c478c GitHub-Pull-Request: golang/go#60764 Reviewed-on: https://go-review.googlesource.com/c/go/+/502835 Reviewed-by: Ian Lance Taylor Run-TryBot: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov TryBot-Result: Gopher Robot --- src/internal/xcoff/ar.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/internal/xcoff/ar.go b/src/internal/xcoff/ar.go index 81ac75afa3..9cbd50d149 100644 --- a/src/internal/xcoff/ar.go +++ b/src/internal/xcoff/ar.go @@ -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) - } -- 2.50.0