lttng: Fix Javadoc and formatting in lttng2.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / stubs / org / eclipse / linuxtools / internal / lttng2 / stubs / service / CommandShellFactory.java
index ec88c1168fe7ff58f1a07f491cf8a56ad55cd614..3fe895f7d58a035aae3c9bd4c751c1f3fdd6c9f1 100644 (file)
@@ -1,24 +1,25 @@
 /**********************************************************************
  * Copyright (c) 2012 Ericsson
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
- * Contributors: 
+ *
+ * Contributors:
  *   Bernd Hufmann - Initial API and implementation
  **********************************************************************/
 package org.eclipse.linuxtools.internal.lttng2.stubs.service;
 
 import org.eclipse.linuxtools.internal.lttng2.stubs.shells.LTTngToolsFileShell;
 
+@SuppressWarnings("javadoc")
 public class CommandShellFactory {
 
     public static final int GET_SESSION_NAMES_COMMAND_SHELL = 0;
-    
+
     private static CommandShellFactory fInstance = null;
-    
+
     public static CommandShellFactory getInstance() {
         if (fInstance == null) {
             fInstance = new CommandShellFactory();
@@ -33,7 +34,7 @@ public class CommandShellFactory {
 //        ICommandShell shell = new LTTngToolsSimulatorShell(proxy);
 //        return shell;
 //    }
-    
+
     public LTTngToolsFileShell getFileShell() {
         return new LTTngToolsFileShell();
     }
This page took 0.023712 seconds and 5 git commands to generate.