From 16d2ebdbcf59438093b4493e7dd3212bc04f51fd Mon Sep 17 00:00:00 2001 From: fyrz Date: Wed, 8 Oct 2014 22:50:54 +0200 Subject: [PATCH] Minor adjustment to prevent two warnings --- java/org/rocksdb/RocksEnv.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/rocksdb/RocksEnv.java b/java/org/rocksdb/RocksEnv.java index 21a4b2777..a9b01ab72 100644 --- a/java/org/rocksdb/RocksEnv.java +++ b/java/org/rocksdb/RocksEnv.java @@ -25,7 +25,7 @@ public class RocksEnv extends RocksObject { *

Returns the default environment suitable for the current operating * system.

* - *

The result of {@see #getDefault()} is a singleton whose ownership + *

The result of {@code getDefault()} is a singleton whose ownership * belongs to rocksdb c++. As a result, the returned RocksEnv will not * have the ownership of its c++ resource, and calling its dispose() * will be no-op.

@@ -79,7 +79,7 @@ public class RocksEnv extends RocksObject { *

Note that the ownership of the input handle * belongs to the caller, and the newly created RocksEnv will not take * the ownership of the input handle. As a result, calling - * {@see #dispose()} of the created RocksEnv will be no-op.

+ * {@code dispose()} of the created RocksEnv will be no-op.

*/ RocksEnv(long handle) { super();