On 12/7/06, Yonik Seeley <[EMAIL PROTECTED]> wrote:
FYI, for some minor changes to CSV, I'm using the commit-then-review
protocol, esp since there don't seem to be many CSV followers.  Holler
if that doesn't work for you :-)

I deprecated setStrategy() as it doesn't make much sense... I don't
think we want to guarantee the ability to switch strategies in the
middle of parsing a CSV input, and setting at the beginning can (and
should) now be done via the constructor.

<snip/>

Maybe add a line after the @deprecated tag as to why it is deprecated
(or what the replacement is)?

And if it needs to go altogether, being in the sandbox is a good
thing. Its probably odd, IMO, to find deprecated items in the first
release.

-Rahul



-Yonik

---------- Forwarded message ----------
From: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Dec 7, 2006 1:05 PM
Subject: svn commit: r483576 -
/jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
To: [EMAIL PROTECTED]


Author: yonik
Date: Thu Dec  7 10:05:00 2006
New Revision: 483576

URL: http://svn.apache.org/viewvc?view=rev&rev=483576
Log:
[CSV] deprecated setStrategy, made most private members final

Modified:
    
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java

Modified: 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java?view=diff&rev=483576&r1=483575&r2=483576
==============================================================================
--- 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
(original)
+++ 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
Thu Dec  7 10:05:00 2006
@@ -69,16 +69,17 @@
   private static final String[] EMPTY_STRING_ARRAY = new String[0];

   // the input stream
-  private ExtendedBufferedReader in;
+  private final ExtendedBufferedReader in;

+  // TODO: this can be made final if setStrategy is removed
   private CSVStrategy strategy;

   // the following objects are shared to reduce garbage
   /** A record buffer for getLine(). Grows as necessary and is reused. */
-  private ArrayList record = new ArrayList();
-  private Token reusableToken = new Token();
-  private CharBuffer wsBuf = new CharBuffer();
-  private CharBuffer code = new CharBuffer(4);
+  private final ArrayList record = new ArrayList();
+  private final Token reusableToken = new Token();
+  private final CharBuffer wsBuf = new CharBuffer();
+  private final CharBuffer code = new CharBuffer(4);


   /**
@@ -567,6 +568,7 @@
    * Sets the specified CSV Strategy
    *
    * @return current instance of CSVParser to allow chained method calls
+   * @deprecated
    */
   public CSVParser setStrategy(CSVStrategy strategy) {
     this.strategy = strategy;


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to