Skip to content

Commit

Permalink
Remove public from LocalFileSystem.FileAttributes.init
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Mar 22, 2024
1 parent 5760018 commit 6fcee26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Hummingbird/Files/LocalFileSystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public struct LocalFileSystem: FileProvider {
public let modificationDate: Date

/// Initialize FileAttributes
public init(isFolder: Bool, size: Int, modificationDate: Date) {
init(isFolder: Bool, size: Int, modificationDate: Date) {
self.isFolder = isFolder
self.size = size
self.modificationDate = modificationDate
Expand Down

0 comments on commit 6fcee26

Please sign in to comment.