You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2020/10/29 21:37:04 UTC

[hbase] branch revert-2594-HBASE-25227-branch-1 created (now e1d214c)

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

apurtell pushed a change to branch revert-2594-HBASE-25227-branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git.


      at e1d214c  Revert "HBASE-25227 [branch-1] Fix Java 11 runtime issue in UnsafeAccess (#2594)"

This branch includes the following new commits:

     new e1d214c  Revert "HBASE-25227 [branch-1] Fix Java 11 runtime issue in UnsafeAccess (#2594)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[hbase] 01/01: Revert "HBASE-25227 [branch-1] Fix Java 11 runtime issue in UnsafeAccess (#2594)"

Posted by ap...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a commit to branch revert-2594-HBASE-25227-branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit e1d214cd2cd02b04cbe775f0a252a7421396f2b8
Author: Andrew Purtell <ap...@apache.org>
AuthorDate: Thu Oct 29 14:33:43 2020 -0700

    Revert "HBASE-25227 [branch-1] Fix Java 11 runtime issue in UnsafeAccess (#2594)"
    
    This reverts commit 2e3f842dc7b5961c3cd3a84d76dd50575a0ff76d.
---
 .../src/main/java/org/apache/hadoop/hbase/util/UnsafeAccess.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/UnsafeAccess.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/UnsafeAccess.java
index 82f073c..72b1c1c 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/UnsafeAccess.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/UnsafeAccess.java
@@ -42,7 +42,7 @@ public final class UnsafeAccess {
   public static final Unsafe theUnsafe;
 
   /** The offset to the first element in a byte array. */
-  public static final long BYTE_ARRAY_BASE_OFFSET;
+  public static final int BYTE_ARRAY_BASE_OFFSET;
 
   public static final boolean LITTLE_ENDIAN =
     ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN);