diff --git a/Source/InputState.swift b/Source/InputState.swift index cf198bdc..0338c995 100644 --- a/Source/InputState.swift +++ b/Source/InputState.swift @@ -60,7 +60,7 @@ class InputState: NSObject { @objc (InputStateDeactivated) class Deactivated: InputState { override var description: String { - "" + "" } } @@ -70,8 +70,11 @@ class InputState: NSObject { @objc var composingBuffer: String { "" } - } + override var description: String { + "" + } + } /// Represents that the composing buffer is empty. @objc (InputStateEmptyIgnoringPreviousState) @@ -79,6 +82,9 @@ class InputState: NSObject { @objc var composingBuffer: String { "" } + override var description: String { + "" + } } /// Represents that the input controller is committing text into client app. @@ -92,7 +98,7 @@ class InputState: NSObject { } override var description: String { - "" + "" } } /// Represents that the composing buffer is not empty. @@ -107,7 +113,7 @@ class InputState: NSObject { } override var description: String { - "" + "" } } @@ -131,7 +137,7 @@ class InputState: NSObject { } override var description: String { - "" + "" } } @@ -196,7 +202,7 @@ class InputState: NSObject { } override var description: String { - "" + "" } @objc func convertToInputting() -> Inputting { @@ -238,7 +244,7 @@ class InputState: NSObject { } override var description: String { - "" + "" } }