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/03/09 19:15:03 UTC

svn commit: r1298953 - /commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Author: sebb
Date: Fri Mar  9 18:15:02 2012
New Revision: 1298953

URL: http://svn.apache.org/viewvc?rev=1298953&view=rev
Log:
Javadoc fix

Modified:
    commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1298953&r1=1298952&r2=1298953&view=diff
==============================================================================
--- commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Fri Mar  9 18:15:02 2012
@@ -25,7 +25,7 @@ import java.io.StringWriter;
 /**
  * The format specification of a CSV file.
  *
- * This class is immutable.
+ * This class is thread-safe.
  */
 public class CSVFormat implements Cloneable, Serializable {
 



Re: svn commit: r1298953 - /commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Posted by Emmanuel Bourg <eb...@apache.org>.
Well, the class is effectively immutable, even if the fields are not 
final. I think that's an important feature to document.


Emmanuel Bourg


Le 09/03/2012 19:15, sebb@apache.org a écrit :
> Author: sebb
> Date: Fri Mar  9 18:15:02 2012
> New Revision: 1298953
>
> URL: http://svn.apache.org/viewvc?rev=1298953&view=rev
> Log:
> Javadoc fix
>
> Modified:
>      commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
>
> Modified: commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
> URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1298953&r1=1298952&r2=1298953&view=diff
> ==============================================================================
> --- commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
> +++ commons/sandbox/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Fri Mar  9 18:15:02 2012
> @@ -25,7 +25,7 @@ import java.io.StringWriter;
>   /**
>    * The format specification of a CSV file.
>    *
> - * This class is immutable.
> + * This class is thread-safe.
>    */
>   public class CSVFormat implements Cloneable, Serializable {
>
>
>