if (file.isInLocalFileSystem() && file.getFileType() instanceof DBLanguageFileType) {
FileEditor editor = source.getSelectedEditor(file);
if (editor != null) {
DBLanguageFileEditorToolbarForm toolbarForm = editor.getUserData(DBLanguageFileEditorToolbarForm.USER_DATA_KEY);
if (toolbarForm != null) {
toolbarForm.dispose();
}
}
}
}