Removed additional Iota

I think assigning iota to each constant is not required
This commit is contained in:
ABHISHEK SONI 2016-09-29 19:32:27 +05:30 committed by GitHub
parent f931d1ea80
commit 15fc943ba4

View File

@ -20,8 +20,8 @@ const (
)
const (
debugCode = iota
releaseCode = iota
testCode = iota
releaseCode
testCode
)
// DefaultWriter is the default io.Writer used the Gin for debug output and