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