Few enhancements
[lgpl/argeo-commons.git] / org.argeo.cms.ui.workbench / src / org / argeo / cms / ui / workbench / UserHomePerspective.java
index 86caad9c45134cf482a83a36a2a0da012c5143ea..ee91b4ea1ffac57396596c6cc8f84f9b3fd4e923 100644 (file)
@@ -23,18 +23,15 @@ import org.eclipse.ui.IPerspectiveFactory;
 
 /** Home perspective for the current user */
 public class UserHomePerspective implements IPerspectiveFactory {
-       public final static String ID = WorkbenchUiPlugin.PLUGIN_ID
-                       + ".userHomePerspective";
+       public final static String ID = WorkbenchUiPlugin.PLUGIN_ID + ".userHomePerspective";
 
        public void createInitialLayout(IPageLayout layout) {
                String editorArea = layout.getEditorArea();
                layout.setEditorAreaVisible(true);
                layout.setFixed(false);
 
-               IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
-                               0.30f, editorArea);
+               IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.30f, editorArea);
                left.addView(UserProfile.ID);
                left.addView(LogView.ID);
        }
-
 }