mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +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
10 lines
127 B
Java
10 lines
127 B
Java
class SameName {
|
|
void method1() {
|
|
class Local {}
|
|
}
|
|
|
|
void method2() {
|
|
class <caret>Local {}
|
|
}
|
|
}
|