KT-20725: Fix storing NotProperty settings
#KT-20725 fixed
This commit is contained in:
@@ -21,7 +21,7 @@ import com.intellij.openapi.ui.NonEmptyInputValidator
|
|||||||
import com.intellij.ui.AddEditRemovePanel
|
import com.intellij.ui.AddEditRemovePanel
|
||||||
import org.jetbrains.kotlin.name.FqNameUnsafe
|
import org.jetbrains.kotlin.name.FqNameUnsafe
|
||||||
|
|
||||||
class NotPropertyListPanel(data: List<FqNameUnsafe>) : AddEditRemovePanel<FqNameUnsafe>(MyTableModel(), data) {
|
class NotPropertyListPanel(data: MutableList<FqNameUnsafe>) : AddEditRemovePanel<FqNameUnsafe>(MyTableModel(), data) {
|
||||||
|
|
||||||
var modified = false
|
var modified = false
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,8 @@ class UsePropertyAccessSyntaxInspection : IntentionBasedInspection<KtCallExpress
|
|||||||
|
|
||||||
val fqNameList = mutableListOf<FqNameUnsafe>()
|
val fqNameList = mutableListOf<FqNameUnsafe>()
|
||||||
|
|
||||||
private var fqNameStrings: List<String>
|
@Suppress("CAN_BE_PRIVATE")
|
||||||
|
var fqNameStrings: List<String>
|
||||||
get() = fqNameList.map { it.asString() }
|
get() = fqNameList.map { it.asString() }
|
||||||
set(value) {
|
set(value) {
|
||||||
fqNameList.clear()
|
fqNameList.clear()
|
||||||
|
|||||||
Reference in New Issue
Block a user