Skip to content

Commit

Permalink
Merge pull request #1 from Frostman/master
Browse files Browse the repository at this point in the history
Fix for KT-1334 Class object in "Show Structure View" action
  • Loading branch information
goodwinnk committed Feb 29, 2012
2 parents 20ca194 + de1c4aa commit 042dc82
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ private String getElementText() {
if (myElement instanceof JetClassInitializer) {
return "<class initializer>";
}

if (myElement instanceof JetClassObject) {
return "<class object>";
}
}

return text;
Expand Down

0 comments on commit 042dc82

Please sign in to comment.