Hides static block icon in tree

This commit is contained in:
emmanue1 2015-07-01 12:26:52 +02:00
parent 3675930b50
commit 20fb73a586

View File

@ -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 ->