소스 검색

Remove an unused argument of utility test func (#139)

Found this by https://github.com/mvdan/unparam
haya14busa 8 년 전
부모
커밋
f15c970de5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      format_test.go

+ 1 - 1
format_test.go

@@ -491,7 +491,7 @@ type wrapper struct {
 	want []string
 }
 
-func prettyBlocks(blocks []string, prefix ...string) string {
+func prettyBlocks(blocks []string) string {
 	var out []string
 
 	for _, b := range blocks {