mirror of https://github.com/dspinellis/UMLGraph
more readable else if statement
This commit is contained in:
parent
24e5822d7b
commit
5a058a3ace
|
|
@ -184,8 +184,7 @@ class ClassGraph {
|
|||
}
|
||||
if (i < typeParameters.size() - 1) {
|
||||
genericsInfo += ", ";
|
||||
}
|
||||
if (i == typeParameters.size() - 1) {
|
||||
} else if (i == typeParameters.size() - 1) {
|
||||
genericsInfo += ">";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue