[RocksJava] JavaDoc corrections - Java8

This commit solves build problems in Java8 due
to wrong JavaDoc.
This commit is contained in:
fyrz 2014-11-17 19:27:52 +01:00
parent 98e59f9813
commit e97f014b91

View File

@ -34,10 +34,12 @@ public class NativeLibraryLoader {
* @param tmpDir A temporary directory to use * @param tmpDir A temporary directory to use
* to copy the native library to. If null, * to copy the native library to. If null,
* or the empty string, we rely on Java's * or the empty string, we rely on Java's
* {@see java.io.File#createTempFile(String, String) } * {@link java.io.File#createTempFile(String, String)}
* function to provide a temporary location. * function to provide a temporary location.
* The temporary file will be registered for deletion * The temporary file will be registered for deletion
* on exit. * on exit.
*
* @throws java.io.IOException if a filesystem operation fails.
*/ */
public void loadLibraryFromJar(final String tmpDir) public void loadLibraryFromJar(final String tmpDir)
throws IOException { throws IOException {