Skip to content

Commit

Permalink
Drop Case Insensitive Option
Browse files Browse the repository at this point in the history
  • Loading branch information
cpisciotta committed Feb 18, 2025
1 parent 6376d71 commit d1dee52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/XcbeautifyLib/XCRegex.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package final class XCRegex: @unchecked Sendable {
private let pattern: String

private lazy var regex: NSRegularExpression? = {
let regex = try? NSRegularExpression(pattern: "^" + pattern, options: [.caseInsensitive])
let regex = try? NSRegularExpression(pattern: "^" + pattern)
assert(regex != nil)
return regex
}()
Expand Down

0 comments on commit d1dee52

Please sign in to comment.