Made _bypass field protected.

This is needed because the _content field is also protected, and subclasses
may need to know if the generator is in bypass mode (and therefore access
the _content buffer directly).
This commit is contained in:
Simone Bordet 2012-02-14 23:05:41 +01:00
parent 4caf662182
commit adeb18093b
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class HttpGenerator extends AbstractGenerator
}
// data
private boolean _bypass = false; // True if _content buffer can be written directly to endp and bypass the content buffer
protected boolean _bypass = false; // True if _content buffer can be written directly to endp and bypass the content buffer
private boolean _needCRLF = false;
private boolean _needEOC = false;
private boolean _bufferChunked = false;