We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
using
1 parent 869fff5 commit 29e60d5Copy full SHA for 29e60d5
os/src/Path.scala
@@ -477,8 +477,8 @@ object Path extends PathMacros {
477
val f = implicitly[PathConvertible[T]].apply(f0)
478
if (f.subpath(0, 1).toString != "~") if (base == null) Path(f0) else Path(f0, base)
479
else {
480
- Path(System.getProperty("user.home"))(PathConvertible.StringConvertible) /
481
- RelPath(f.subpath(0, 1).relativize(f))(PathConvertible.NioPathConvertible)
+ Path(System.getProperty("user.home"))(using PathConvertible.StringConvertible) /
+ RelPath(f.subpath(0, 1).relativize(f))(using PathConvertible.NioPathConvertible)
482
}
483
484
0 commit comments