Minor cleanup

This commit is contained in:
Fabian Becker 2015-12-10 22:55:46 +01:00
parent c0bcb6fc95
commit a47cd29c8f
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,6 @@ public abstract class AbstractObjectEditor implements PropertyEditor, java.beans
*/ */
public Object object; public Object object;
public Object backupObject; public Object backupObject;
public GeneralGenericObjectEditorPanel objectEditorPanel;
public Hashtable editorTable = new Hashtable(); public Hashtable editorTable = new Hashtable();
@Override @Override

View File

@ -21,7 +21,7 @@ public class DoubleArrayComparator implements Comparator<Object> {
/** /**
* Generic constructor. * Generic constructor.
* *
* @param fitnessCriterion * @param criterion
*/ */
public DoubleArrayComparator(int criterion) { public DoubleArrayComparator(int criterion) {
fitCriterion = criterion; fitCriterion = criterion;
@ -44,7 +44,7 @@ public class DoubleArrayComparator implements Comparator<Object> {
* @param o1 the first double[] to compare * @param o1 the first double[] to compare
* @param o2 the second double[] to compare * @param o2 the second double[] to compare
* @return -1 if the first is dominant, 1 if the second is dominant, otherwise 0 * @return -1 if the first is dominant, 1 if the second is dominant, otherwise 0
* @see #AbstractEAIndividual.isDominatingFitness(double[], double[]) * @see AbstractEAIndividual#isDominatingFitness(double[], double[])
*/ */
@Override @Override
public int compare(Object o1, Object o2) { public int compare(Object o1, Object o2) {