Use DataBuffer.write in CharSequenceEncoder

Since SPR-17558, `DataBuffer` now offers a new method to write Strings
to them. This commit makes `CharSequenceEncoder` use that.

Issue: SPR-17558
This commit is contained in:
Brian Clozel
2018-12-20 21:33:44 +01:00
parent 6361b0cb23
commit 4955d08f28
2 changed files with 17 additions and 7 deletions

View File

@@ -63,8 +63,6 @@ public class CharSequenceEncoderTests
.consumeNextWith(expectString(this.foo))
.consumeNextWith(expectString(this.bar))
.verifyComplete());
}
}