You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2002/09/18 21:55:32 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang CharSetUtils.java

scolebourne    2002/09/18 12:55:32

  Modified:    lang/src/java/org/apache/commons/lang CharSetUtils.java
  Log:
  Added explicit public constructor
  
  Revision  Changes    Path
  1.4       +10 -1     jakarta-commons/lang/src/java/org/apache/commons/lang/CharSetUtils.java
  
  Index: CharSetUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/CharSetUtils.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CharSetUtils.java	21 Jul 2002 20:19:50 -0000	1.3
  +++ CharSetUtils.java	18 Sep 2002 19:55:32 -0000	1.4
  @@ -68,6 +68,15 @@
   public class CharSetUtils {
   
       /**
  +     * CharSetUtils instances should NOT be constructed in standard programming.
  +     * Instead, the class should be used as <code>CharSetUtils.evaluateSet(null);</code>.
  +     * This constructor is public to permit tools that require a JavaBean instance
  +     * to operate.
  +     */
  +    public CharSetUtils() {
  +    }
  +
  +    /**
        * Creates a CharSetUtils object which allows a certain amount of 
        * set logic to be performed upon the following syntax:
        *
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>