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 (
|
const (
|
||||||
NoWritten = -1
|
noWritten = -1
|
||||||
DefaultStatus = 200
|
defaultStatus = 200
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
|
@ -38,8 +38,8 @@ type (
|
||||||
|
|
||||||
func (w *responseWriter) reset(writer http.ResponseWriter) {
|
func (w *responseWriter) reset(writer http.ResponseWriter) {
|
||||||
w.ResponseWriter = writer
|
w.ResponseWriter = writer
|
||||||
w.size = NoWritten
|
w.size = noWritten
|
||||||
w.status = DefaultStatus
|
w.status = defaultStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *responseWriter) WriteHeader(code int) {
|
func (w *responseWriter) WriteHeader(code int) {
|
||||||
|
@ -74,7 +74,7 @@ func (w *responseWriter) Size() int {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *responseWriter) Written() bool {
|
func (w *responseWriter) Written() bool {
|
||||||
return w.size != NoWritten
|
return w.size != noWritten
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements the http.Hijacker interface
|
// Implements the http.Hijacker interface
|
||||||
|
|
Loading…
Reference in New Issue