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 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
|
||||
|
||||
|
||||
@@ -63,7 +63,8 @@ class UsePropertyAccessSyntaxInspection : IntentionBasedInspection<KtCallExpress
|
||||
|
||||
val fqNameList = mutableListOf<FqNameUnsafe>()
|
||||
|
||||
private var fqNameStrings: List<String>
|
||||
@Suppress("CAN_BE_PRIVATE")
|
||||
var fqNameStrings: List<String>
|
||||
get() = fqNameList.map { it.asString() }
|
||||
set(value) {
|
||||
fqNameList.clear()
|
||||
|
||||
Reference in New Issue
Block a user