Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bundles/org.eclipse.jface/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jface;singleton:=true
Bundle-Version: 3.36.0.qualifier
Bundle-Version: 3.36.100.qualifier
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.eclipse.jface,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public abstract class AbstractFilteredViewerComposite<T extends ViewerFilter> ex
*/
public AbstractFilteredViewerComposite(Composite parent, int style, long refreshJobDelayInMillis) {
super(parent, style);
this.parent = parent;
this.refreshJobDelayInMillis = refreshJobDelayInMillis;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ public class FilteredTree extends AbstractFilteredViewerComposite<PatternFilter>
*/
public FilteredTree(Composite parent, boolean useNewLook, boolean useFastHashLookup) {
super(parent, SWT.NONE, DEFAULT_REFRESH_TIME);
this.parent = parent;
if (treeViewer != null) {
treeViewer.setUseHashlookup(useFastHashLookup);
}
Expand Down Expand Up @@ -180,7 +179,6 @@ public FilteredTree(Composite parent, int treeStyle, PatternFilter filter, boole
public FilteredTree(Composite parent, int treeStyle, PatternFilter filter, boolean useNewLook,
boolean useFastHashLookup, long refreshJobDelayInMillis) {
super(parent, SWT.NONE, refreshJobDelayInMillis);
this.parent = parent;
init(treeStyle, filter);
if (treeViewer != null) {
treeViewer.setUseHashlookup(useFastHashLookup);
Expand Down Expand Up @@ -211,7 +209,6 @@ public FilteredTree(Composite parent, int treeStyle, PatternFilter filter, boole
@Deprecated
protected FilteredTree(Composite parent) {
super(parent, SWT.NONE, DEFAULT_REFRESH_TIME);
this.parent = parent;
}

/**
Expand Down
Loading