Skip to content

Commit

Permalink
Fix warnings in eclipse.ui.trace
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Aug 1, 2024
1 parent 6d1204f commit 22f953a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ public class TracingComponentTreeViewer extends FilteredTree {
* The parent composite
*/
public TracingComponentTreeViewer(final Composite parent) {

super(parent, SWT.NONE, new TracingComponentViewerFilter(), true);
super(parent, SWT.NONE, new TracingComponentViewerFilter(), true, true);
setInitialText(Messages.filterSearchText);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ protected void addBundleViewerSection(Composite parent) {
tracingTreeTitleLabel.setText(Messages.tracingTreeTile);
filterTree = new TracingComponentTreeViewer(parent);
GridDataFactory.fillDefaults().grab(true, true).applyTo(getViewerTree());
getViewer().setUseHashlookup(true);
getViewerTree().setHeaderVisible(false);
getViewer().setLabelProvider(new TracingComponentLabelProvider());
getViewer().setContentProvider(new TracingComponentContentProvider());
Expand Down

0 comments on commit 22f953a

Please sign in to comment.