Skip to content

Commit 4c64db1

Browse files
committed
Remove accidental org.jetbrains:annotations usage.
See spring-projects/spring-data-build#2670
1 parent 7c6d46d commit 4c64db1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/springframework/data/redis/connection/DefaultStringRedisConnection.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
import org.apache.commons.logging.Log;
2525
import org.apache.commons.logging.LogFactory;
26-
import org.jetbrains.annotations.NotNull;
2726
import org.jspecify.annotations.NonNull;
2827
import org.jspecify.annotations.NullUnmarked;
2928
import org.jspecify.annotations.Nullable;
@@ -2611,17 +2610,18 @@ public List<Long> hTtl(byte[] key, TimeUnit timeUnit, byte[]... fields) {
26112610
}
26122611

26132612
@Override
2614-
public List<byte[]> hGetDel(@NotNull byte[] key, @NotNull byte[]... fields) {
2613+
public List<byte[]> hGetDel(@NonNull byte[] key, @NonNull byte[]... fields) {
26152614
return convertAndReturn(delegate.hGetDel(key, fields), Converters.identityConverter());
26162615
}
26172616

26182617
@Override
2619-
public List<byte[]> hGetEx(@NotNull byte[] key, Expiration expiration, @NotNull byte[]... fields) {
2618+
public List<byte[]> hGetEx(@NonNull byte[] key, Expiration expiration, @NonNull byte[]... fields) {
26202619
return convertAndReturn(delegate.hGetEx(key, expiration, fields), Converters.identityConverter());
26212620
}
26222621

26232622
@Override
2624-
public Boolean hSetEx(@NotNull byte[] key, @NonNull Map<byte[], byte[]> hashes, HashFieldSetOption condition, Expiration expiration) {
2623+
public Boolean hSetEx(@NonNull byte[] key, @NonNull Map<byte[], byte[]> hashes, HashFieldSetOption condition,
2624+
Expiration expiration) {
26252625
return convertAndReturn(delegate.hSetEx(key, hashes, condition, expiration), Converters.identityConverter());
26262626
}
26272627

0 commit comments

Comments
 (0)