private void reconcile(final boolean force) {
if (documentProvider == null) {
return;
}
final ISourceFile workingCopy = documentProvider.getWorkingCopy(editor
.getEditorInput());
if (workingCopy != null) {
SafeRunner.run(new ISafeRunnable() {
@Override
public void run() throws CoreException {
workingCopy.reconcile(force, mon);
}
@Override
public void handleException(final Throwable exception) {
}