Skip to content

Commit

Permalink
Fixed type references in javadoc to avoid IntelliJ error reports on r…
Browse files Browse the repository at this point in the history
…ebuild.
  • Loading branch information
Piotr Włodarek authored and mikehearn committed May 25, 2014
1 parent b32d0cc commit cc6090a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* <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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public EncryptedPrivateKey(EncryptedPrivateKey encryptedPrivateKey) {
}

/**
* @param iv
* @param initialisationVector
* @param encryptedPrivateKeys
*/
public EncryptedPrivateKey(byte[] initialisationVector, byte[] encryptedPrivateKeys) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ public ValueType remove(KeyType key) {
/**
* 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;
Expand Down

0 comments on commit cc6090a

Please sign in to comment.