Skip to content

Commit 4ebe14f

Browse files
authored
un-deprecate AbsolutePath::appending(RelativePath) (#341) (#342)
motivation: concatinating rlative path to absolute path is a key API we should preserve it, but improve the implementation chnages: remove deprecation marker from AbsolutePath::appending(RelativePath) work to improve the implementation is tracked in #336
1 parent ab1bb8a commit 4ebe14f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/TSCBasic/Path.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ public struct AbsolutePath: Hashable {
166166
}
167167

168168
/// Returns the absolute path with the relative path applied.
169-
@available(*, deprecated, renamed: "AbsolutePath(_:relativeTo:)")
170169
public func appending(_ subpath: RelativePath) -> AbsolutePath {
171170
return AbsolutePath(self, subpath)
172171
}

0 commit comments

Comments
 (0)