Skip to content

Commit 8e3230e

Browse files
authored
Implement missing method in the BooleanListOutput (#3033) (#3039)
* Implement missing method in the BooleanListOutput (#3033) * Impossible to backport test
1 parent 7ea1e27 commit 8e3230e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/io/lettuce/core/output/BooleanListOutput.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ public void set(long integer) {
4949
subscriber.onNext(output, (integer == 1) ? Boolean.TRUE : Boolean.FALSE);
5050
}
5151

52+
@Override
53+
public void set(boolean value) {
54+
subscriber.onNext(output, value);
55+
}
56+
5257
@Override
5358
public void multi(int count) {
5459

0 commit comments

Comments
 (0)