Skip to content

Commit b2eddb7

Browse files
committed
Cleanup file comments, re-indent some files
1 parent 0acf36e commit b2eddb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+63
-147
lines changed

Plugins/RswiftGenerateResourcesCommand/RswiftGenerateResourcesCommand.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// RswiftGenerateResourcesCommand.swift
3-
//
3+
// R.swift
44
//
55
// Created by Tom Lokhorst on 2022-10-19.
66
//

Plugins/RswiftModifyXcodePackages/RswiftModifyXcodePackages.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// RswiftModifyXcodePackages.swift
3-
//
3+
// R.swift
44
//
55
// Created by Tom Lokhorst on 2022-11-07.
66
//

Sources/RswiftGenerators/AccessibilityIdentifier+Generator.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import Foundation
99
import RswiftResources
1010

1111
private protocol AccessibilityIdentifierContainer {
12-
var name: String { get }
13-
var usedAccessibilityIdentifiers: [String] { get }
12+
var name: String { get }
13+
var usedAccessibilityIdentifiers: [String] { get }
1414
}
1515

1616
extension NibResource: AccessibilityIdentifierContainer {}

Sources/RswiftGenerators/Shared/AssetCatalogMergedNamespaces.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Tom Lokhorst on 2017-06-06.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation
@@ -31,4 +29,3 @@ struct AssetCatalogMergedNamespaces {
3129
}
3230
}
3331
}
34-

Sources/RswiftGenerators/Shared/SwiftIdentifier.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 11-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation
@@ -165,4 +163,3 @@ private let SwiftKeywords = [
165163
// Keywords from Swift 2 that are still reserved
166164
"__COLUMN__", "__FILE__", "__FUNCTION__", "__LINE__",
167165
]
168-

Sources/RswiftParsers/Resources/AssetCatalog+Parser.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 09-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation

Sources/RswiftParsers/Resources/FileResource+Parser.swift

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 09-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation
@@ -13,10 +11,10 @@ import RswiftResources
1311
extension FileResource {
1412
// These are all extensions of resources that are passed to some special compiler step and not directly available at runtime
1513
static public let unsupportedExtensions: Set<String> = [
16-
AssetCatalog.supportedExtensions,
17-
StringsTable.supportedExtensions,
18-
NibResource.supportedExtensions,
19-
StoryboardResource.supportedExtensions,
14+
AssetCatalog.supportedExtensions,
15+
StringsTable.supportedExtensions,
16+
NibResource.supportedExtensions,
17+
StoryboardResource.supportedExtensions,
2018
]
2119
.reduce([]) { $0.union($1) }
2220

Sources/RswiftParsers/Resources/FontResource+Parser.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 09-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation

Sources/RswiftParsers/Resources/ImageResource+Parser.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 09-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation

Sources/RswiftParsers/Resources/Nib+Parser.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// R.swift
44
//
55
// Created by Mathijs Kadijk on 09-12-15.
6-
// From: https://github.com/mac-cain13/R.swift
7-
// License: MIT License
86
//
97

108
import Foundation

0 commit comments

Comments
 (0)