Skip to content

Commit

Permalink
[INFRA-1226] Show the enclosing class name as well for static nested …
Browse files Browse the repository at this point in the history
…class extension points
  • Loading branch information
daniel-beck committed Jun 15, 2017
1 parent 043892f commit 0c25b85
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -102,10 +102,7 @@ public String getName() {
}

public String getShortName() {
if (getName().contains(".")) {
return getName().substring(getName().lastIndexOf(".") + 1);
}
return getName();
return definition.className;
}

void formatAsAsciidoc(PrintWriter w) {
Expand Down

0 comments on commit 0c25b85

Please sign in to comment.