Skip to content

Commit afe445f

Browse files
committed
Remove unnecessary internal specifiers
1 parent 501b660 commit afe445f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Modules/Sources/Networking/Model/Product/ProductMetadataExtractor.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import NetworkingCore
2222
/// }
2323
/// ]
2424
///
25-
internal struct ProductMetadataExtractor {
25+
struct ProductMetadataExtractor {
2626

2727
private typealias AnyDictionary = [String: Any?]
2828

@@ -38,7 +38,7 @@ internal struct ProductMetadataExtractor {
3838

3939
/// Searches product metadata for subscription data and converts it to a `ProductSubscription` if possible.
4040
///
41-
internal func extractProductSubscription() throws -> ProductSubscription? {
41+
func extractProductSubscription() throws -> ProductSubscription? {
4242
let subscriptionMetadata = filterMetadata(with: Constants.subscriptionPrefix)
4343

4444
guard !subscriptionMetadata.isEmpty else {
@@ -53,7 +53,7 @@ internal struct ProductMetadataExtractor {
5353

5454
/// Extracts a `String` metadata value for the provided key.
5555
///
56-
internal func extractStringValue(forKey key: String) -> String? {
56+
func extractStringValue(forKey key: String) -> String? {
5757
let metaData = filterMetadata(with: key)
5858
let keyValueMetadata = getKeyValueDictionary(from: metaData)
5959
return keyValueMetadata.valueAsString(forKey: key)

0 commit comments

Comments
 (0)