NoWritten and DefaultStatus must be unexported variables

This commit is contained in:
Manu Mtz-Almeida 2015-04-07 18:50:16 +02:00
parent 6c788a4300
commit 598c78297c
1 changed files with 5 additions and 5 deletions

View File

@ -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