GT-0 fixing junit tests

This commit is contained in:
ghidravore 2019-11-29 18:40:49 -05:00
parent cb36be2296
commit ac66dab16b
2 changed files with 9 additions and 2 deletions

View file

@ -33,5 +33,11 @@ public interface IndexMapper {
}
};
/**
* Maps an index from one address mapping to another. This method will return
* {@link BigInteger#ZERO} if there no mapping.
* @param value the index value to map from an old index map to a new index map
* @return the mapped index
*/
public BigInteger map(BigInteger value);
}