|
23 | 23 |
|
24 | 24 | import org.apache.commons.logging.Log; |
25 | 25 | import org.apache.commons.logging.LogFactory; |
26 | | -import org.jetbrains.annotations.NotNull; |
27 | 26 | import org.jspecify.annotations.NonNull; |
28 | 27 | import org.jspecify.annotations.NullUnmarked; |
29 | 28 | import org.jspecify.annotations.Nullable; |
@@ -2611,17 +2610,18 @@ public List<Long> hTtl(byte[] key, TimeUnit timeUnit, byte[]... fields) { |
2611 | 2610 | } |
2612 | 2611 |
|
2613 | 2612 | @Override |
2614 | | - public List<byte[]> hGetDel(@NotNull byte[] key, @NotNull byte[]... fields) { |
| 2613 | + public List<byte[]> hGetDel(@NonNull byte[] key, @NonNull byte[]... fields) { |
2615 | 2614 | return convertAndReturn(delegate.hGetDel(key, fields), Converters.identityConverter()); |
2616 | 2615 | } |
2617 | 2616 |
|
2618 | 2617 | @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) { |
2620 | 2619 | return convertAndReturn(delegate.hGetEx(key, expiration, fields), Converters.identityConverter()); |
2621 | 2620 | } |
2622 | 2621 |
|
2623 | 2622 | @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) { |
2625 | 2625 | return convertAndReturn(delegate.hSetEx(key, hashes, condition, expiration), Converters.identityConverter()); |
2626 | 2626 | } |
2627 | 2627 |
|
|
0 commit comments