Skip to content

Commit

Permalink
Fixed typo in exception message
Browse files Browse the repository at this point in the history
hashKyeName changed to hashKeyName
  • Loading branch information
AntonFagerberg authored and debora-ito committed Jun 1, 2020
1 parent b1b1a21 commit 010058a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public PrimaryKey(String hashKeyName, Object hashKeyValue) {
public PrimaryKey(String hashKeyName, Object hashKeyValue,
String rangeKeyName, Object rangeKeyValue) {
if (hashKeyName.equals(rangeKeyName))
throw new IllegalArgumentException("hashKyeName must not be the same as the rangeKeyName");
throw new IllegalArgumentException("hashKeyName must not be the same as the rangeKeyName");
addComponent(hashKeyName, hashKeyValue);
addComponent(rangeKeyName, rangeKeyValue);
}
Expand Down

0 comments on commit 010058a

Please sign in to comment.