Introduce Property: Fix duplicate count in popup window
#KT-13395 Fixed
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
- [`KT-13244`](https://youtrack.jetbrains.com/issue/KT-13244) Override/Implement Members: Do not expand type aliases in the generated members
|
||||
- [`KT-13218`](https://youtrack.jetbrains.com/issue/KT-13218) Extract Function: Fix AssertionError on callable references
|
||||
- [`KT-13385`](https://youtrack.jetbrains.com/issue/KT-13385) Move: Quote package name (if necessary) when moving declarations to new file
|
||||
- [`KT-13395`](https://youtrack.jetbrains.com/issue/KT-13395) Introduce Property: Fix duplicate count in popup window
|
||||
|
||||
## 1.1-M01 (EAP-1)
|
||||
|
||||
|
||||
+1
-1
@@ -134,7 +134,7 @@ class KotlinInplacePropertyIntroducer(
|
||||
}
|
||||
}
|
||||
|
||||
val occurrenceCount = extractionResult.duplicateReplacers.size + 1
|
||||
val occurrenceCount = extractionResult.duplicateReplacers.size
|
||||
if (occurrenceCount > 1) {
|
||||
addPanelControl(
|
||||
ControlWrapper {
|
||||
|
||||
Reference in New Issue
Block a user