Fixed code style

This commit is contained in:
Jindra Petřík
2024-07-30 21:06:51 +02:00
parent cc34fae1c5
commit 1d9329e9be
363 changed files with 8559 additions and 8277 deletions

View File

@@ -243,11 +243,11 @@ public class FolderListPanel extends JPanel {
String s;
if (treeItem instanceof Tag) {
Tag t = (Tag) treeItem;
String uniqueId = t.getUniqueId();
String uniqueId = t.getUniqueId();
s = ((Tag) treeItem).getTagName();
if (uniqueId != null) {
s = s + " (" + uniqueId + ")";
}
}
} else {
s = treeItem.toString();
}