Skip to content

Commit c7e2aa0

Browse files
committed
fix Jdoc
1 parent 218b7d9 commit c7e2aa0

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.redislabs</groupId>
88
<artifactId>jrejson</artifactId>
9-
<version>1.1.0-SNAPSHOT</version>
9+
<version>1.1.0</version>
1010

1111
<name>JReJSON</name>
1212
<description>Official client for ReJSON</description>

src/main/java/com/redislabs/modules/rejson/JReJSON.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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) {

src/main/java/com/redislabs/modules/rejson/Path.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Path(final String strPath) {
4444
/**
4545
* Makes a root path
4646
* @return the root path
47-
* @deprecated use {@value #ROOT_PATH} instead
47+
* @deprecated use {@link #ROOT_PATH} instead
4848
*/
4949
@Deprecated
5050
public static Path RootPath() {

0 commit comments

Comments
 (0)