3
0
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:
Piotr Włodarek 2014-05-22 21:26:21 +02:00 committed by Mike Hearn
parent b32d0cce17
commit cc6090af88
3 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -43,7 +43,7 @@ public class EncryptedPrivateKey {
}
/**
* @param iv
* @param initialisationVector
* @param encryptedPrivateKeys
*/
public EncryptedPrivateKey(byte[] initialisationVector, byte[] encryptedPrivateKeys) {

View File

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