View | Details | Raw Unified | Return to bug 38085
Collapse All | Expand All

(-)org/eclipse/ui/dialogs/ResourceListSelectionDialog.java (+3 lines)
Lines 591-596 Link Here
591
	try {
591
	try {
592
		container.accept(new IResourceProxyVisitor() {
592
		container.accept(new IResourceProxyVisitor() {
593
			public boolean visit(IResourceProxy proxy) {
593
			public boolean visit(IResourceProxy proxy) {
594
				if (proxy.isDerived()) {
595
					return false;
596
				}
594
				int type = proxy.getType();
597
				int type = proxy.getType();
595
				if ((typeMask & type) != 0) {
598
				if ((typeMask & type) != 0) {
596
					if(match(proxy.getName())) {
599
					if(match(proxy.getName())) {

Return to bug 38085