Skip to content

Commit 9d5d04f

Browse files
committed
Fix
1 parent eb73ecd commit 9d5d04f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/main/java/org/elasticsearch/ingest/ESONFlat.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ public BytesReference getSerializedKeyBytes() {
7575
streamOutput.writeVInt(keys.size());
7676
for (ESONEntry entry : keys) {
7777
String key = entry.key() == null ? "" : entry.key();
78-
// byte[] bytes = key == null ? EMPTY_KEY : key.getBytes(StandardCharsets.UTF_8);
79-
// streamOutput.writeVInt(bytes.length);
80-
// streamOutput.writeBytes(bytes, 0, bytes.length);
78+
// byte[] bytes = key == null ? EMPTY_KEY : key.getBytes(StandardCharsets.UTF_8);
79+
// streamOutput.writeVInt(bytes.length);
80+
// streamOutput.writeBytes(bytes, 0, bytes.length);
8181
streamOutput.writeUTF8String(key);
8282
streamOutput.writeByte(entry.type());
8383
streamOutput.writeInt(entry.offsetOrCount());

0 commit comments

Comments
 (0)