aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2019-10-02 13:47:45 -0700
committerChris Povirk <beigetangerine@gmail.com>2019-10-02 17:37:14 -0400
commit7c8701a9c0dac74faa5e577fcdc776b9598c12cc (patch)
tree828c71799df0b8af6acdf013dd1878520a714bf2
parent138d1d9e86e4c84879a3b29f689c73e55e1861a2 (diff)
downloadjimfs-7c8701a9c0dac74faa5e577fcdc776b9598c12cc.tar.gz
Fix exception message - add missing closing parenthesis
Fixes https://github.com/google/jimfs/pull/37 RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=272510710
-rw-r--r--jimfs/src/main/java/com/google/common/jimfs/WindowsPathType.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jimfs/src/main/java/com/google/common/jimfs/WindowsPathType.java b/jimfs/src/main/java/com/google/common/jimfs/WindowsPathType.java
index 50ee224..0e68b26 100644
--- a/jimfs/src/main/java/com/google/common/jimfs/WindowsPathType.java
+++ b/jimfs/src/main/java/com/google/common/jimfs/WindowsPathType.java
@@ -64,7 +64,7 @@ final class WindowsPathType extends PathType {
throw new InvalidPathException(
original,
"Jimfs does not currently support the Windows syntax for a relative path "
- + "on a specific drive (e.g. \"C:foo\\bar\"");
+ + "on a specific drive (e.g. \"C:foo\\bar\")");
}
String root;
@@ -74,7 +74,7 @@ final class WindowsPathType extends PathType {
throw new InvalidPathException(
original,
"Jimfs does not currently support the Windows syntax for an absolute path "
- + "on the current drive (e.g. \"\\foo\\bar\"");
+ + "on the current drive (e.g. \"\\foo\\bar\")");
} else {
root = parseDriveRoot(path);
}