Skip to content

Commit 82d7209

Browse files
authored
un-deprecate AbsolutePath::appending(RelativePath) (#341)
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 b2248f9 commit 82d7209

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
@@ -169,7 +169,6 @@ public struct AbsolutePath: Hashable {
169169
}
170170

171171
/// Returns the absolute path with the relative path applied.
172-
@available(*, deprecated, renamed: "AbsolutePath(_:relativeTo:)")
173172
public func appending(_ subpath: RelativePath) -> AbsolutePath {
174173
return AbsolutePath(self, subpath)
175174
}

0 commit comments

Comments
 (0)