mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
Allow local classes to work with bytecode viewer. Add a method in ClassUtil that takes into account anonymous and local classes and move duplicated logic into that method. Presumably, everything that used JavaAnonymousClassesHelper wanted local classes too. Also deprecate ClassUtil#getJVMClassName #IDEA-372346 fixed closes https://github.com/JetBrains/intellij-community/pull/3044 GitOrigin-RevId: 7d300719c079d3de5a7cb589d50431326526faa0
6 lines
73 B
Java
6 lines
73 B
Java
class Simple {
|
|
void method() {
|
|
class <caret>Local {}
|
|
}
|
|
}
|