From b2fc218cd6261316770f80aae468c41086daa9a3 Mon Sep 17 00:00:00 2001 From: Ganning Xu Date: Tue, 25 Jul 2023 12:52:14 -0400 Subject: [PATCH] [#131] fixed typo: 'exisiting' changed to 'existing' --- .../main/java/org/irods/nfsrods/vfs/InodeToPathMapper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irods-vfs-impl/src/main/java/org/irods/nfsrods/vfs/InodeToPathMapper.java b/irods-vfs-impl/src/main/java/org/irods/nfsrods/vfs/InodeToPathMapper.java index bb1691cc..e0ad17d4 100644 --- a/irods-vfs-impl/src/main/java/org/irods/nfsrods/vfs/InodeToPathMapper.java +++ b/irods-vfs-impl/src/main/java/org/irods/nfsrods/vfs/InodeToPathMapper.java @@ -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); @@ -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"); } }); }