X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/editor/SmartyEditorActionContributor.java b/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/editor/SmartyEditorActionContributor.java index 4196b46..9dd8c26 100644 --- a/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/editor/SmartyEditorActionContributor.java +++ b/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/editor/SmartyEditorActionContributor.java @@ -22,7 +22,8 @@ import org.eclipse.ui.texteditor.ITextEditor; /** * Common base class for action contributors for Java editors. */ -public class SmartyEditorActionContributor extends BasicTextEditorActionContributor { +public class SmartyEditorActionContributor extends + BasicTextEditorActionContributor { /* * (non-Javadoc) @@ -43,11 +44,13 @@ public class SmartyEditorActionContributor extends BasicTextEditorActionContribu file = ((IFileEditorInput) editorInput).getFile(); } - ShowExternalPreviewAction fShowExternalPreviewAction = ShowExternalPreviewAction.getInstance(); + ShowExternalPreviewAction fShowExternalPreviewAction = ShowExternalPreviewAction + .getInstance(); fShowExternalPreviewAction.setEditor(textEditor); fShowExternalPreviewAction.update(); if (fShowExternalPreviewAction != null) - fShowExternalPreviewAction.doRun(ShowExternalPreviewAction.SMARTY_TYPE); + fShowExternalPreviewAction + .doRun(ShowExternalPreviewAction.SMARTY_TYPE); } } }