You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2019/08/27 19:09:58 UTC

[incubator-datasketches-memory] branch SupWarnJavadoc updated: Fix javadoc links to normally hidden Java classes.

This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch SupWarnJavadoc
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-memory.git


The following commit(s) were added to refs/heads/SupWarnJavadoc by this push:
     new 84db5e7  Fix javadoc links to normally hidden Java classes.
84db5e7 is described below

commit 84db5e72888592f82e42fc42e0e7c3cf8adfa16c
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Tue Aug 27 12:09:51 2019 -0700

    Fix javadoc links to normally hidden Java classes.
---
 src/main/java/org/apache/datasketches/memory/CompareAndCopy.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/datasketches/memory/CompareAndCopy.java b/src/main/java/org/apache/datasketches/memory/CompareAndCopy.java
index 02b647d..8052d0a 100644
--- a/src/main/java/org/apache/datasketches/memory/CompareAndCopy.java
+++ b/src/main/java/org/apache/datasketches/memory/CompareAndCopy.java
@@ -34,14 +34,14 @@ import static org.apache.datasketches.memory.UnsafeUtil.unsafe;
 final class CompareAndCopy {
 
   /**
-   * Don't use {@link sun.misc.Unsafe#copyMemory} to copy blocks of memory larger than this
+   * Don't use sun.misc.Unsafe#copyMemory to copy blocks of memory larger than this
    * threshold, because internally it doesn't have safepoint polls, that may cause long
    * "Time To Safe Point" pauses in the application. This has been fixed in JDK 9 (see
    * https://bugs.openjdk.java.net/browse/JDK-8149596 and
    * https://bugs.openjdk.java.net/browse/JDK-8141491), but not in JDK 8, so the Memory library
    * should keep having this boilerplate as long as it supports Java 8.
    *
-   * <p>A reference to this can be found in {@link java.nio.Bits}.</p>
+   * <p>A reference to this can be found in java.nio.Bits.</p>
    */
   static final int UNSAFE_COPY_THRESHOLD_BYTES = 1024 * 1024;
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org