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

(-)DecoratorDefinition.java (-2 / +1 lines)
Lines 10-16 Link Here
10
 *******************************************************************************/
10
 *******************************************************************************/
11
package org.eclipse.ui.internal.decorators;
11
package org.eclipse.ui.internal.decorators;
12
12
13
import org.eclipse.core.internal.runtime.InternalPlatform;
14
import org.eclipse.core.runtime.CoreException;
13
import org.eclipse.core.runtime.CoreException;
15
import org.eclipse.core.runtime.IConfigurationElement;
14
import org.eclipse.core.runtime.IConfigurationElement;
16
import org.eclipse.jface.viewers.IBaseLabelProvider;
15
import org.eclipse.jface.viewers.IBaseLabelProvider;
Lines 210-216 Link Here
210
	protected void handleCoreException(CoreException exception) {
209
	protected void handleCoreException(CoreException exception) {
211
210
212
		//If there is an error then reset the enabling to false
211
		//If there is an error then reset the enabling to false
213
		InternalPlatform.getRuntimePlugin().getLog().log(exception.getStatus());
212
		WorkbenchPlugin.getDefault().getLog().log(exception.getStatus());
214
		this.enabled = false;
213
		this.enabled = false;
215
	}
214
	}
216
215

Return to bug 38148