Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 96600 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jface/bindings/BindingManager.java (-4 / +6 lines)
Lines 520-529 Link Here
520
			// Check the scheme ids.
520
			// Check the scheme ids.
521
			final String schemeId = binding.getSchemeId();
521
			final String schemeId = binding.getSchemeId();
522
			found = false;
522
			found = false;
523
			for (int j = 0; j < activeSchemeIds.length; j++) {
523
			if (activeSchemeIds != null) {
524
				if (Util.equals(schemeId, activeSchemeIds[j])) {
524
				for (int j = 0; j < activeSchemeIds.length; j++) {
525
					found = true;
525
					if (Util.equals(schemeId, activeSchemeIds[j])) {
526
					break;
526
						found = true;
527
						break;
528
					}
527
				}
529
				}
528
			}
530
			}
529
			if (!found) {
531
			if (!found) {

Return to bug 96600