hotspot/src/cpu/aarch64/vm/bytes_aarch64.hpp
changeset 46504 38048d4d20e7
parent 40010 e32d5e545789
--- a/hotspot/src/cpu/aarch64/vm/bytes_aarch64.hpp	Fri May 26 09:48:46 2017 -0400
+++ b/hotspot/src/cpu/aarch64/vm/bytes_aarch64.hpp	Fri May 26 13:47:33 2017 -0700
@@ -30,12 +30,6 @@
 
 class Bytes: AllStatic {
  public:
-  // Returns true if the byte ordering used by Java is different from the native byte ordering
-  // of the underlying machine. For example, this is true for Intel x86, but false for Solaris
-  // on Sparc.
-  static inline bool is_Java_byte_ordering_different(){ return true; }
-
-
   // Efficient reading and writing of unaligned unsigned data in platform-specific byte ordering
   // (no special code is needed since x86 CPUs can access unaligned data)
   static inline u2   get_native_u2(address p)         { return *(u2*)p; }