Skip to content

Commit a12644c

Browse files
committed
Fix formatting
1 parent 4813653 commit a12644c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

key.ui/src/main/java/de/uka/ilkd/key/gui/prooftree/GUIProofTreeModel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ private synchronized void updateTree(GUIAbstractTreeNode trn) {
402402

403403
// If possible, redraw only a certain subtree
404404
// starting from the lowermost parent of trn that is not hidden
405-
while (trn != null && trn != getRoot() && ProofTreeViewFilter.hiddenByGlobalFilters(trn.getNode())) {
405+
while (trn != null && trn != getRoot()
406+
&& ProofTreeViewFilter.hiddenByGlobalFilters(trn.getNode())) {
406407
trn = (GUIAbstractTreeNode) trn.getParent();
407408
}
408409

0 commit comments

Comments
 (0)