Skip to content

Commit 416d5d9

Browse files
committed
Don't reload tags if tag section wasn't created.
1 parent 6d4ff9f commit 416d5d9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

plugins/org.jboss.tools.windup.ui/src/org/jboss/tools/windup/ui/internal/rules/delegate/ClassificationDelegate.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,9 @@ private CMElementDeclaration getTagCmNode() {
361361
@Override
362362
protected void bind() {
363363
super.bind();
364-
loadTags();
364+
if (this.tagsTreeViewer != null) {
365+
loadTags();
366+
}
365367
}
366368

367369
@SuppressWarnings("deprecation")

0 commit comments

Comments
 (0)