Make minor whitespace formatting tweak.

This commit is contained in:
Brent Simmons 2019-02-18 14:56:37 -08:00
parent cb579e73a4
commit 2b1a5300eb
1 changed files with 0 additions and 2 deletions

View File

@ -13,13 +13,11 @@ import RSWeb
struct Browser {
static func open(_ urlString: String) {
// Opens according to prefs.
open(urlString, inBackground: AppDefaults.openInBrowserInBackground)
}
static func open(_ urlString: String, inBackground: Bool) {
if let url = URL(string: urlString) {
MacWebBrowser.openURL(url, inBackground: inBackground)
}