minor style change replacing '{ }' with '{}'

to stay consistent with other empty functions
This commit is contained in:
JP Simard
2016-02-07 10:21:43 -08:00
parent b04562194d
commit f3b6cc08f7
2 changed files with 2 additions and 2 deletions
@@ -11,7 +11,7 @@ import SourceKittenFramework
public struct EmptyCountRule: ConfigProviderRule, OptInRule {
public var config = SeverityConfig(.Error)
public init() { }
public init() {}
public static let description = RuleDescription(
identifier: "empty_count",
@@ -12,7 +12,7 @@ public struct LegacyConstantRule: CorrectableRule, ConfigProviderRule {
public var config = SeverityConfig(.Warning)
public init() { }
public init() {}
public static let description = RuleDescription(
identifier: "legacy_constant",