Find Usages: Do not duplicate containing declaration in super member warning dialog
#KT-10209 Fixed
This commit is contained in:
@@ -173,6 +173,7 @@ These artifacts include extensions for the types available in the latter JDKs, s
|
||||
- [`KT-12887`](https://youtrack.jetbrains.com/issue/KT-12887) "Extend selection" should select call's invoked expression
|
||||
- [`KT-6520`](https://youtrack.jetbrains.com/issue/KT-6520) Introduce 'maino' and 'psvmo' templates for generating main in object
|
||||
- [`KT-13455`](https://youtrack.jetbrains.com/issue/KT-13455) Override/Implement: Make return type non-nullable (platform collection case) when overriding Java method
|
||||
- [`KT-10209`](https://youtrack.jetbrains.com/issue/KT-10209) Find Usages: Do not duplicate containing declaration in super member warning dialog
|
||||
- Fix exception when choose Gradle configurer after project is synced
|
||||
- Allow configuring Kotlin in Gradle module without Kotlin sources
|
||||
- Show all Kotlin annotations when browsing hierarchy of "java.lang.Annotation"
|
||||
|
||||
@@ -183,7 +183,7 @@ usageType.packageMemberAccess = Package member access
|
||||
|
||||
x.in.y={0} in {1}
|
||||
x.implements.y={0} in {1} implements {2} in {3}.
|
||||
x.overrides.y.in.class.list={0} in {1} overrides declarations in the following classes/interfaces: {2} Do you want to {3} the base declarations?
|
||||
x.overrides.y.in.class.list={0} overrides declarations in the following classes/interfaces: {1} Do you want to {2} the base declarations?
|
||||
|
||||
unused.overriding.methods.title=Unused Overriding Members
|
||||
there.are.unused.methods.that.override.methods.you.delete=There are unused members that override methods you delete.
|
||||
|
||||
@@ -152,7 +152,6 @@ public class KotlinRefactoringUtil {
|
||||
String message = KotlinBundle.message(
|
||||
"x.overrides.y.in.class.list",
|
||||
DescriptorRenderer.COMPACT_WITH_SHORT_TYPES.render(declarationDescriptor),
|
||||
IdeDescriptorRenderers.SOURCE_CODE_SHORT_NAMES_IN_TYPES.render(declarationDescriptor.getContainingDeclaration()),
|
||||
superClassesStr,
|
||||
KotlinBundle.message(actionStringKey)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user