Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
tishun committed May 21, 2024
1 parent 4e8a93a commit 8b59ebd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
2 changes: 2 additions & 0 deletions src/main/java/io/lettuce/core/output/IntegerListOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ public void set(long integer) {
subscriber.onNext(output, integer);
}

@Override
public void set(ByteBuffer bytes) {
// ignore empty ByteBuffer, would fail otherwise
if (bytes != null) {
super.set(bytes);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package io.lettuce.core.cluster.commands.reactive;

import io.lettuce.core.cluster.api.StatefulRedisClusterConnection;
import io.lettuce.core.commands.HashCommandIntegrationTests;
import io.lettuce.test.ReactiveSyncInvocationHandler;
import javax.inject.Inject;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import javax.inject.Inject;
import io.lettuce.core.cluster.api.StatefulRedisClusterConnection;
import io.lettuce.core.commands.HashCommandIntegrationTests;
import io.lettuce.test.ReactiveSyncInvocationHandler;

/**
* @author Mark Paluch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
package io.lettuce.core.commands.reactive;

import static org.assertj.core.api.Assertions.assertThat;

import java.util.stream.Collectors;

import javax.inject.Inject;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import reactor.test.StepVerifier;
import io.lettuce.core.KeyValue;
import io.lettuce.core.Value;
import io.lettuce.core.api.StatefulRedisConnection;
import io.lettuce.core.commands.HashCommandIntegrationTests;
import io.lettuce.test.ReactiveSyncInvocationHandler;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import reactor.test.StepVerifier;

import javax.inject.Inject;
import java.util.stream.Collectors;

import static org.assertj.core.api.Assertions.assertThat;

/**
* x
Expand Down

0 comments on commit 8b59ebd

Please sign in to comment.