A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / model / PHPVariableComparator.java
index 1cd86e3..b0d152e 100644 (file)
@@ -5,8 +5,8 @@ import java.util.Comparator;
 public class PHPVariableComparator implements Comparator {
 
        public int compare(Object arg0, Object arg1) {
-               PHPVariable left=(PHPVariable) arg0;
-               PHPVariable right=(PHPVariable) arg1;
+               PHPVariable left = (PHPVariable) arg0;
+               PHPVariable right = (PHPVariable) arg1;
                return left.getName().compareTo(right.getName());
        }