private void parse() {
parsed = true;
major = DEFAULT_MAJOR_VERSION;
minor = DEFAULT_MINOR_VERSION;
RawField f = getRawField();
ByteSequence buf = f.getRaw();
int pos = f.getDelimiterIdx() + 1;
if (buf == null) {
String body = f.getBody();
if (body == null) {
return;
}
buf = ContentUtil.encode(body);
pos = 0;