Skip to content

Commit

Permalink
Merge pull request #1862 from nak3/fix-gofmt
Browse files Browse the repository at this point in the history
Fix gofmt complaint
  • Loading branch information
smarterclayton committed Apr 22, 2015
2 parents effa12c + b0625b9 commit 67ef849
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/hello-openshift/hello_openshift.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ func main() {
}
}()


go func() {
fmt.Println("serving on 8888")
err := http.ListenAndServe(":8888", nil)
if err != nil {
panic("ListenAndServe: " + err.Error())
}
}()
select{}
select {}
}

0 comments on commit 67ef849

Please sign in to comment.