Skip to content

Commit

Permalink
[irods#131] fixed typo: 'exisiting' changed to 'existing'
Browse files Browse the repository at this point in the history
  • Loading branch information
ganning127 committed Jul 26, 2023
1 parent 8c686ca commit b2fc218
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void map(Long _inodeNumber, Path _path)

if (otherPath != null)
{
throw new IllegalStateException("Inode number is already mapped to exisiting path");
throw new IllegalStateException("Inode number is already mapped to existing path");
}

Long otherInodeNumber = pathToInode_.putIfAbsent(_path, _inodeNumber);
Expand All @@ -166,7 +166,7 @@ public void map(Long _inodeNumber, Path _path)
throw new IllegalStateException("Failed to rollback mapping");
}

throw new IllegalStateException("Path is already mapped to exisiting inode number");
throw new IllegalStateException("Path is already mapped to existing inode number");
}
});
}
Expand Down

0 comments on commit b2fc218

Please sign in to comment.