This commit is contained in:
@@ -395,8 +395,8 @@ public final class Utility {
|
||||
* @param low
|
||||
* @return
|
||||
*/
|
||||
public static long merge(long high, long low) {
|
||||
return high << 32 | low;
|
||||
public static long merge(int high, int low) {
|
||||
return (0L + high) << 32 | low;
|
||||
}
|
||||
|
||||
public static ByteBuffer encodeUTF8(final ByteBuffer buffer, final char[] text, final int start, final int len) {
|
||||
|
||||
Reference in New Issue
Block a user