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