Skip to content

Commit

Permalink
Minor simplification of conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jun 23, 2022
1 parent bf029d6 commit 986cca0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8056,8 +8056,7 @@ public boolean isPackageType() {
public boolean isGenerified() {
if (!getTypeVariables().isEmpty()) {
return true;
}
if (!isStatic()) {
} else if (!isStatic()) {
TypeDescription declaringType = getDeclaringType();
if (declaringType != null && declaringType.isGenerified()) {
return true;
Expand Down

0 comments on commit 986cca0

Please # to comment.