mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-07 14:54:15 +00:00
Fixed type references in javadoc to avoid IntelliJ error reports on rebuild.
This commit is contained in:
parent
b32d0cce17
commit
cc6090af88
@ -18,7 +18,7 @@ package com.google.bitcoin.crypto;
|
||||
|
||||
/**
|
||||
* <p>This is just a wrapper for the i (child number) as per BIP 32 with a boolean getter for the first bit and a getter
|
||||
* for the actual 0-based child number. A {@link List} of these forms a <i>path</i> through a
|
||||
* for the actual 0-based child number. A {@link java.util.List} of these forms a <i>path</i> through a
|
||||
* {@link DeterministicHierarchy}. This class is immutable.
|
||||
*/
|
||||
public class ChildNumber {
|
||||
|
@ -43,7 +43,7 @@ public class EncryptedPrivateKey {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param iv
|
||||
* @param initialisationVector
|
||||
* @param encryptedPrivateKeys
|
||||
*/
|
||||
public EncryptedPrivateKey(byte[] initialisationVector, byte[] encryptedPrivateKeys) {
|
||||
|
@ -168,8 +168,8 @@ class TransactionalHashMap<KeyType, ValueType> {
|
||||
/**
|
||||
* A Map with multiple key types that is DB per-thread-transaction-aware.
|
||||
* However, this class is not thread-safe.
|
||||
* @param UniqueKeyType is a key that must be unique per object
|
||||
* @param MultiKeyType is a key that can have multiple values
|
||||
* @param <UniqueKeyType> is a key that must be unique per object
|
||||
* @param <MultiKeyType> is a key that can have multiple values
|
||||
*/
|
||||
class TransactionalMultiKeyHashMap<UniqueKeyType, MultiKeyType, ValueType> {
|
||||
TransactionalHashMap<UniqueKeyType, ValueType> mapValues;
|
||||
|
Loading…
x
Reference in New Issue
Block a user