Author: sebb
Date: Fri Oct 29 12:08:20 2010
New Revision: 1028709

URL: http://svn.apache.org/viewvc?rev=1028709&view=rev
Log:
Synchronising access is not sufficient to make the class thread safe.

Modified:
    
commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionBuilder.java

Modified: 
commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionBuilder.java
URL: 
http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionBuilder.java?rev=1028709&r1=1028708&r2=1028709&view=diff
==============================================================================
--- 
commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionBuilder.java
 (original)
+++ 
commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/OptionBuilder.java
 Fri Oct 29 12:08:20 2010
@@ -24,7 +24,7 @@ package org.apache.commons.cli;
  * <a href="http://c2.com/cgi-bin/wiki?BuilderPattern";>
  * http://c2.com/cgi-bin/wiki?BuilderPattern</a>.</p>
  *
- * <p>This class is NOT thread safe. If several thread were to use this class 
they must be synchronized.</p>
+ * <p>This class is NOT thread safe. See <a 
href="https://issues.apache.org/jira/browse/CLI-209";>CLI-209</a></p>
  * 
  * @author John Keyes (john at integralsource.com)
  * @version $Revision$, $Date$


Reply via email to