A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / ui / ExternalToolsContentProvider.java
index 1227293..5c0083e 100644 (file)
@@ -1,11 +1,11 @@
 package net.sourceforge.phpdt.externaltools.internal.ui;
 
 /**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp.  All rights reserved.
-This file is made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-**********************************************************************/
+ Copyright (c) 2000, 2002 IBM Corp.  All rights reserved.
+ This file is made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+ **********************************************************************/
 
 import java.util.ArrayList;
 import java.util.Arrays;
@@ -22,6 +22,7 @@ import org.eclipse.jface.viewers.Viewer;
  */
 public class ExternalToolsContentProvider implements IStructuredContentProvider {
        protected List elements = new ArrayList();
+
        protected TableViewer viewer;
 
        public void add(Object o) {
@@ -55,9 +56,9 @@ public class ExternalToolsContentProvider implements IStructuredContentProvider
                elements.remove(o);
                viewer.remove(o);
        }
-       
+
        public void remove(IStructuredSelection selection) {
-               Object[] array= selection.toArray();
+               Object[] array = selection.toArray();
                elements.removeAll(Arrays.asList(array));
                viewer.remove(array);
        }