mirror of
https://github.com/java-decompiler/jd-gui.git
synced 2024-11-27 06:20:31 +00:00
Hides static block icon in tree
This commit is contained in:
parent
3675930b50
commit
20fb73a586
@ -118,7 +118,9 @@ abstract class AbstractTypeFileTreeNodeFactoryProvider extends AbstractTreeNodeF
|
||||
}
|
||||
|
||||
// Create methods
|
||||
type.methods.collect {
|
||||
type.methods.grep {
|
||||
!it.name.equals('<clinit>')
|
||||
}.collect {
|
||||
def fragment = typeName + '-' + it.name + '-' + it.descriptor
|
||||
return new FieldOrMethodBean(fragment:fragment, label:it.displayName, icon:it.icon)
|
||||
}.sort { m1, m2 ->
|
||||
|
Loading…
Reference in New Issue
Block a user