mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
IntentionActionWithChoice UI replaced with multi-step ModCommand, as we don't have IntentionActionWithChoice in ModCommand API, and it's unclear whether it's a good idea, and how to implement it better GitOrigin-RevId: a702bc672b56f4c51dd7e7b01cf5ee0ded457805
6 lines
143 B
Java
6 lines
143 B
Java
// "Make 'Child' extend 'Parent'" "false"
|
|
sealed class Parent permits C<caret>hild {}
|
|
|
|
class OtherParent {}
|
|
|
|
class Child extends OtherParent {} |