3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 06:44:16 +00:00

Fix a java7-ism

This commit is contained in:
Mike Hearn 2013-02-27 16:55:11 +01:00
parent e14e7a228c
commit 29cea2e6f0

View File

@ -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);
}
}