From 84310ec8cdccfce5c03bf59697bc8aa2562cb529 Mon Sep 17 00:00:00 2001 From: agrgr Date: Mon, 17 Jun 2024 18:43:19 +0300 Subject: [PATCH] javadoc update --- .../data/aerospike/cache/AerospikeCacheKey.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheKey.java b/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheKey.java index 6cd5b52f0..e9a6e3f61 100644 --- a/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheKey.java +++ b/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheKey.java @@ -20,7 +20,7 @@ private AerospikeCacheKey(long number) { * Instantiate AerospikeCacheKey instance with a String. * * @param string String parameter - * @return AerospikeCacheKey + * @return new instance of AerospikeCacheKey initialized with the given parameter */ public static AerospikeCacheKey of(String string) { return new AerospikeCacheKey(string); @@ -30,7 +30,7 @@ public static AerospikeCacheKey of(String string) { * Instantiate AerospikeCacheKey instance with a long number. * * @param number long number - * @return AerospikeCacheKey + * @return new instance of AerospikeCacheKey initialized with the given parameter */ public static AerospikeCacheKey of(long number) { return new AerospikeCacheKey(number);