Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Example/Example/Sources/Application/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ enum Constants {
static var merchantId: String?

/// Return URL.
static let returnUrl = URL(string: "processout-example://return")! // swiftlint:disable:this force_unwrapping
static let returnUrl = URL(string: "processout-example://return")!
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ extension ProcessOutConfiguration {
}
}

// swiftlint:disable force_unwrapping

extension ProcessOutConfiguration.Environment {

/// Production environment.
Expand All @@ -145,5 +143,3 @@ extension ProcessOutConfiguration.Environment {
checkoutBaseUrl: URL(string: "https://checkout.processout.ninja")!
)
}

// swiftlint:enable force_unwrapping
Loading