mirror of https://github.com/gin-gonic/gin.git
NoWritten and DefaultStatus must be unexported variables
This commit is contained in:
parent
6c788a4300
commit
598c78297c
|
@ -12,8 +12,8 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
NoWritten = -1
|
||||
DefaultStatus = 200
|
||||
noWritten = -1
|
||||
defaultStatus = 200
|
||||
)
|
||||
|
||||
type (
|
||||
|
@ -38,8 +38,8 @@ type (
|
|||
|
||||
func (w *responseWriter) reset(writer http.ResponseWriter) {
|
||||
w.ResponseWriter = writer
|
||||
w.size = NoWritten
|
||||
w.status = DefaultStatus
|
||||
w.size = noWritten
|
||||
w.status = defaultStatus
|
||||
}
|
||||
|
||||
func (w *responseWriter) WriteHeader(code int) {
|
||||
|
@ -74,7 +74,7 @@ func (w *responseWriter) Size() int {
|
|||
}
|
||||
|
||||
func (w *responseWriter) Written() bool {
|
||||
return w.size != NoWritten
|
||||
return w.size != noWritten
|
||||
}
|
||||
|
||||
// Implements the http.Hijacker interface
|
||||
|
|
Loading…
Reference in New Issue