# HG changeset patch # User Ed Swartz # Date 1273852361 18000 # Node ID b0d425db83b6ca360314ca55703df5af4e094e23 # Parent d41a633841738d93fb4c7f7ecf28cbd01615d24c Stop littering Error Log with EPOC engine messages about missing model files. diff -r d41a63384173 -r b0d425db83b6 project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/ViewRunnableAdapter.java --- a/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/ViewRunnableAdapter.java Fri May 14 10:42:12 2010 -0500 +++ b/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/ViewRunnableAdapter.java Fri May 14 10:52:41 2010 -0500 @@ -24,7 +24,6 @@ import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.IStatus; -import java.io.FileNotFoundException; import java.text.MessageFormat; public abstract class ViewRunnableAdapter { @@ -45,11 +44,13 @@ EpocEnginePlugin.log(status); EpocEnginePlugin.log(exception.getStatus()); } else { + /* status = Logging.newStatus(EpocEnginePlugin.getDefault(), IStatus.ERROR, MessageFormat.format("Could not find or load model: ''{0}''", //$NON-NLS-1$ new Object[] { modelPath.toOSString() }), new FileNotFoundException()); EpocEnginePlugin.log(status); + */ } return null; }