@@ -218,7 +218,6 @@ public void set(String key, Object object, ExistenceModifier flag) {
218218 * Sets an object in the root path
219219 * @param key the key name
220220 * @param object the Java object to store
221- * @param path in the object
222221 */
223222 public void set (String key , Object object ) {
224223 set (key , object , ExistenceModifier .DEFAULT , Path .ROOT_PATH );
@@ -319,7 +318,7 @@ public Class<?> type(String key, Path path) {
319318 * @param key the key name
320319 * @param path optional single path in the object, defaults to root
321320 * @return the number of paths deleted (0 or 1)
322- * @deprecated use {@link #del(String, Path... )} instead
321+ * @deprecated use {@link #del(String, Path)} instead
323322 */
324323 @ Deprecated
325324 public static Long del (Jedis conn , String key , Path ... path ) {
@@ -371,7 +370,7 @@ public static Object get(Jedis conn, String key, Path... paths) {
371370 * @param object the Java object to store
372371 * @param flag an existential modifier
373372 * @param path optional single path in the object, defaults to root
374- * @deprecated use {@link #set(String, Object, ExistenceModifier, Path... )} instead
373+ * @deprecated use {@link #set(String, Object, ExistenceModifier, Path)} instead
375374 */
376375 @ Deprecated
377376 public static void set (Jedis conn , String key , Object object , ExistenceModifier flag , Path ... path ) {
@@ -399,7 +398,7 @@ public static void set(Jedis conn, String key, Object object, ExistenceModifier
399398 * @param key the key name
400399 * @param object the Java object to store
401400 * @param path optional single path in the object, defaults to root
402- * @deprecated use {@link #set(String, Object, ExistenceModifier, Path... )} instead
401+ * @deprecated use {@link #set(String, Object, ExistenceModifier, Path)} instead
403402 */
404403 @ Deprecated
405404 public static void set (Jedis conn , String key , Object object , Path ... path ) {
@@ -412,7 +411,7 @@ public static void set(Jedis conn, String key, Object object, Path... path) {
412411 * @param key the key name
413412 * @param path optional single path in the object, defaults to root
414413 * @return the Java class of the requested object
415- * @deprecated use {@link #type(String, Path... )} instead
414+ * @deprecated use {@link #type(String, Path)} instead
416415 */
417416 @ Deprecated
418417 public static Class <?> type (Jedis conn , String key , Path ... path ) {
0 commit comments