View | Details | Raw Unified | Return to bug 262151 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/wst/sse/ui/internal/reconcile/validator/ValidatorStrategy.java (-1 / +4 lines)
Lines 198-204 Link Here
198
					Validator v = (Validator) it.next();
198
					Validator v = (Validator) it.next();
199
					IValidator iv = null;
199
					IValidator iv = null;
200
					try {
200
					try {
201
						iv = v.asIValidator();
201
						//be sure validator is loaded first to prevent unwanted plugin activation
202
						if(ValidationFramework.getDefault().isLoaded(v)) {
203
							iv = v.asIValidator();
204
						}
202
					}
205
					}
203
					catch (Exception e) {
206
					catch (Exception e) {
204
						Logger.logException(e);
207
						Logger.logException(e);

Return to bug 262151