tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / dialogs / SearchFilterDialog.java
index a0f5af2558738f330912cd200c6ea9620d166417..0826d4a1a27085edca9d141a262d25716f80b177 100755 (executable)
@@ -1,16 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- *
+ * Copyright (c) 2005, 2012 IBM Corporation, 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:
- * IBM - Initial API and implementation
- * Bernd Hufmann - Updated for TMF
+ *     IBM - Initial API and implementation
+ *     Bernd Hufmann - Updated for TMF
  **********************************************************************/
+
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs;
 
 import java.util.ArrayList;
@@ -251,8 +250,6 @@ public class SearchFilterDialog extends Dialog {
     /**
      * Called when the dialog box ok button is pressed and calls back
      * the appropriate action provider (ISDFilterProvider or ISDFindProvider).
-     *
-     * @see org.eclipse.jface.dialogs.Dialog#okPressed()
      */
     @Override
     public void okPressed() {
@@ -314,7 +311,7 @@ public class SearchFilterDialog extends Dialog {
             int size = Math.min(list.size(), MAX_EXPRESSION_LIST);
             String[] temp = new String[size];
             for (int i = 0; i < size; i++) {
-                temp[i] = (String) list.get(i);
+                temp[i] = list.get(i);
             }
             fExpressionList = temp;
             settings.put(EXPRESSION_LIST, fExpressionList);
This page took 0.025413 seconds and 5 git commands to generate.