Call chain -> sequence: minor style fix

This commit is contained in:
Mikhail Glukhikh
2018-10-05 14:10:38 +03:00
parent 3c75dd7b5a
commit b500239bd1
@@ -69,9 +69,9 @@ class ConvertCallChainIntoSequenceInspection : AbstractKotlinInspection() {
)
})
override fun createOptionsPanel() = OptionsPanel(this)
override fun createOptionsPanel(): JPanel = OptionsPanel(this)
class OptionsPanel internal constructor(owner: ConvertCallChainIntoSequenceInspection) : JPanel() {
private class OptionsPanel(owner: ConvertCallChainIntoSequenceInspection) : JPanel() {
init {
layout = BorderLayout()
val regexField = EditorTextField(owner.callChainLengthText).apply { setOneLineMode(true) }