ConsumerOptions.setIsCleartextSigned -> return this

This commit is contained in:
Paul Schaub 2022-02-15 14:21:12 +01:00
parent b33885c268
commit f3cf3456ab
1 changed files with 2 additions and 1 deletions

View File

@ -351,8 +351,9 @@ public class ConsumerOptions {
* INTERNAL method to mark cleartext signed messages. * INTERNAL method to mark cleartext signed messages.
* Do not call this manually. * Do not call this manually.
*/ */
public void setIsCleartextSigned() { public ConsumerOptions setIsCleartextSigned() {
this.cleartextSigned = true; this.cleartextSigned = true;
return this;
} }
/** /**