You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/04/26 03:18:47 UTC

svn commit: r1330619 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java

Author: sebb
Date: Thu Apr 26 01:18:46 2012
New Revision: 1330619

URL: http://svn.apache.org/viewvc?rev=1330619&view=rev
Log:
Missing @Deprecated marker

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java?rev=1330619&r1=1330618&r2=1330619&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ListPopulation.java Thu Apr 26 01:18:46 2012
@@ -86,6 +86,7 @@ public abstract class ListPopulation imp
      * @throws NumberIsTooLargeException if the list of chromosomes exceeds the population limit
      * @deprecated use {@link #addChromosomes(Collection)} instead
      */
+    @Deprecated
     public void setChromosomes(final List<Chromosome> chromosomes) {
         if (chromosomes == null) {
             throw new NullArgumentException();