Fixed invalid flow control in CacheControlHeaderParser
This commit is contained in:
parent
915b9b34d7
commit
6055776245
|
@ -118,7 +118,7 @@ class CacheControlHeaderParser {
|
|||
} else {
|
||||
final String s = header.getValue();
|
||||
if (s == null) {
|
||||
return;
|
||||
continue;
|
||||
}
|
||||
buffer = new CharArrayBuffer(s.length());
|
||||
buffer.append(s);
|
||||
|
|
Loading…
Reference in New Issue