Skip to content

Commit

Permalink
🥅 パラメータ初期化エラー処理を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
toriwasa committed Oct 19, 2023
1 parent 09a82e9 commit 07d620b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cmd/grouping/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ func main() {
p, err := grouping.NewParameter(n, g, d)
log.Printf("p: %+v\n", p)

// パラメータ生成時にエラーが発生した場合は終了する
// パラメータ生成時にエラーが発生した場合はエラー内容を標準エラー出力してヘルプを表示する
if err != nil {
panic(err)
println("Error: " + err.Error())
flag.Usage()
return
}

// 引数に応じた文字列のイテレータを生成する
Expand Down

0 comments on commit 07d620b

Please sign in to comment.