Remove BytesRef usage from WatcherXContentParser (elastic/x-pack-elasticsearch#4024)

This conforms WatcherXContentParser for the changes in
https://github.com/elastic/elasticsearch/pull/28792

Original commit: elastic/x-pack-elasticsearch@d2d214ef89
This commit is contained in:
Lee Hinman 2018-03-07 10:10:03 -07:00 committed by GitHub
parent a0800c0b09
commit 5f95e7ce87
1 changed files with 5 additions and 4 deletions

View File

@ -19,6 +19,7 @@ import org.elasticsearch.xpack.core.watcher.crypto.CryptoService;
import org.joda.time.DateTime;
import java.io.IOException;
import java.nio.CharBuffer;
import java.time.Clock;
import java.util.List;
import java.util.Map;
@ -145,13 +146,13 @@ public class WatcherXContentParser implements XContentParser {
}
@Override
public BytesRef utf8BytesOrNull() throws IOException {
return parser.utf8BytesOrNull();
public CharBuffer charBufferOrNull() throws IOException {
return parser.charBufferOrNull();
}
@Override
public BytesRef utf8Bytes() throws IOException {
return parser.utf8Bytes();
public CharBuffer charBuffer() throws IOException {
return parser.charBuffer();
}
@Override