Skip to content

Commit 78b815e

Browse files
author
Oleh Kulykov
committed
1734076959
1 parent fcb3ffe commit 78b815e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

swift/Path.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,14 +480,14 @@ extension plzma_path_timestamp {
480480
}
481481
}
482482

483-
extension plzma_path_timestamp: @retroactive CustomStringConvertible {
483+
extension plzma_path_timestamp: Swift.CustomStringConvertible {
484484

485485
public var description: String {
486486
return "Creation: \(creationDate)\nLast access: \(lastAccessDate)\nLast modification: \(lastModificationDate)"
487487
}
488488
}
489489

490-
extension plzma_path_timestamp: @retroactive CustomDebugStringConvertible {
490+
extension plzma_path_timestamp: Swift.CustomDebugStringConvertible {
491491

492492
public var debugDescription: String {
493493
return self.description
@@ -512,14 +512,14 @@ extension plzma_path_stat {
512512
}
513513
}
514514

515-
extension plzma_path_stat: @retroactive CustomStringConvertible {
515+
extension plzma_path_stat: Swift.CustomStringConvertible {
516516

517517
public var description: String {
518518
return "Size: \(size)\n\(timestamp.description)"
519519
}
520520
}
521521

522-
extension plzma_path_stat: @retroactive CustomDebugStringConvertible {
522+
extension plzma_path_stat: Swift.CustomDebugStringConvertible {
523523

524524
public var debugDescription: String {
525525
return self.description

0 commit comments

Comments
 (0)