tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / ConfirmDialog.java
index 213e3d9d9fa75ed703bb3f021465fc718f5f6722..a94003a93b5ca3d6b29ba3ba86eca3d2b5979442 100644 (file)
@@ -1,12 +1,12 @@
 /**********************************************************************
- * Copyright (c) 2012 Ericsson
- * 
+ * Copyright (c) 2012, 2013 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
  **********************************************************************/
 
@@ -21,20 +21,16 @@ import org.eclipse.swt.widgets.Shell;
  * <p>
  * Confirmation dialog implementation.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 
 public class ConfirmDialog implements IConfirmDialog {
 
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs.IConfirmDialog#openConfirm(org.eclipse.swt.widgets.Shell, java.lang.String, java.lang.String)
-     */
     @Override
     public boolean openConfirm(Shell parent, String title, String message) {
-        return MessageDialog.openConfirm(parent, 
-                Messages.TraceControl_DestroyConfirmationTitle, 
+        return MessageDialog.openConfirm(parent,
+                Messages.TraceControl_DestroyConfirmationTitle,
                 Messages.TraceControl_DestroyConfirmationMessage);
     }
 }
This page took 0.024142 seconds and 5 git commands to generate.