Skip to content

Commit

Permalink
tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
rambaut committed Jan 23, 2025
1 parent 404e0c2 commit 05bc7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dr/app/tools/treeannotator/CladeSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ public void embiggenBiClades(final int minCladeSize, final int minCladeCount) {
Arrays.sort(clades, (o1, o2) -> o2.getCount() - o1.getCount());
int n = 0;
// find the point at which the count drops below minCount
while (clades[n].getCount() > minCladeCount - 1 && n < clades.length) {
while (n < clades.length && clades[n].getCount() > minCladeCount - 1) {
n++;
}

Expand Down

0 comments on commit 05bc7db

Please sign in to comment.