Skip to content

Commit

Permalink
Eclipse JDT icon correction
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-ennahdi committed Oct 30, 2024
1 parent b08708d commit 237a894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private TableTag generateConstructorsHTML() {
return table(
each(constructors, constructor -> tr(
td(
img().withSrc(RESOURCES_PATH + "/meth" + constructor.getAccessSpecifier().name().toLowerCase().substring(0, 3) + "_obj.svg"),
img().withSrc(RESOURCES_PATH + "/meth" + ("none".equals(constructor.getAccessSpecifier().name().toLowerCase()) ? "def" : constructor.getAccessSpecifier().name().toLowerCase().substring(0, 3)) + "_obj.svg"),
img().withSrc(RESOURCES_PATH_SPEC + "/constr_ovr.svg").withStyle("position: relative; left: -13px; top: -4px;")
),
td( constructor.getName().asString() + "(" + constructor.getParameters().stream().map(p -> p.getTypeAsString()).collect(Collectors.joining(",")) + ")")
Expand Down

0 comments on commit 237a894

Please sign in to comment.