From 075cbf09a789c58de35116b0187031f12ae39056 Mon Sep 17 00:00:00 2001 From: Michael de Paly Date: Thu, 25 Mar 2010 16:30:26 +0000 Subject: [PATCH] fixed javadoc --- src/eva2/server/go/populations/Population.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eva2/server/go/populations/Population.java b/src/eva2/server/go/populations/Population.java index f7a60501..d70b07ca 100644 --- a/src/eva2/server/go/populations/Population.java +++ b/src/eva2/server/go/populations/Population.java @@ -688,11 +688,11 @@ public class Population extends ArrayList implements PopulationInterface, Clonea } /** - * This method will return the index of the current best individual from the + * This method will return the index of the current worst individual from the * population. * * @see getIndexOfBestOrWorstIndividual() - * @return The index of the best individual. + * @return The index of the worst individual. */ public int getIndexOfWorstIndividualNoConstr() { return getIndexOfBestOrWorstIndy(false, false, -1);