mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-01 07:42:17 +00:00
Fix a java7-ism
This commit is contained in:
parent
e14e7a228c
commit
29cea2e6f0
@ -16,11 +16,11 @@
|
||||
|
||||
package com.google.bitcoin.core;
|
||||
|
||||
import com.google.common.base.Objects;
|
||||
import com.google.common.base.Preconditions;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Parses and generates private keys in the form used by the Bitcoin "dumpprivkey" command. This is the private key
|
||||
@ -96,6 +96,6 @@ public class DumpedPrivateKey extends VersionedChecksummedBytes {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(bytes, version, compressed);
|
||||
return Objects.hashCode(bytes, version, compressed);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user