Author: yonik
Date: Tue Jan 30 12:39:40 2007
New Revision: 501549

URL: http://svn.apache.org/viewvc?view=rev&rev=501549
Log:
trivial cleanup of javadoc errors

Modified:
    
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVParser.java
    
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.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=501549&r1=501548&r2=501549
==============================================================================
--- 
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
 Tue Jan 30 12:39:40 2007
@@ -104,10 +104,9 @@
   // ======================================================
   
   /**
-   * Default strategy for the parser follows the default CSV Strategy.
+   * Default strategy for the parser follows the default [EMAIL PROTECTED] 
CSVStrategy}.
    * 
    * @param input an InputStream containing "csv-formatted" stream
-   * @see #setStrategy()
    * @deprecated use [EMAIL PROTECTED] #CSVParser(Reader)}.
    */
   public CSVParser(InputStream input) {
@@ -118,7 +117,6 @@
    * CSV parser using the default [EMAIL PROTECTED] CSVStrategy}.
    * 
    * @param input a Reader containing "csv-formatted" input
-   * @see #setStrategy()
    */
   public CSVParser(Reader input) {
     // note: must match default-CSV-strategy !!
@@ -128,8 +126,8 @@
   /**
    * Customized value delimiter parser.
    * 
-   * The parser follows the default CSV strategy as defined in 
-   * [EMAIL PROTECTED] #setStrategy()} except for the delimiter setting.
+   * The parser follows the default [EMAIL PROTECTED] CSVStrategy}
+   * except for the delimiter setting.
    * 
    * @param input a Reader based on "csv-formatted" input
    * @param delimiter a Char used for value separation

Modified: 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java?view=diff&rev=501549&r1=501548&r2=501549
==============================================================================
--- 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java 
(original)
+++ 
jakarta/commons/sandbox/csv/trunk/src/java/org/apache/commons/csv/CSVUtils.java 
Tue Jan 30 12:39:40 2007
@@ -75,12 +75,11 @@
   // ======================================================
   
   /**
-   * Parses the given String according to the default CSV strategy.
+   * Parses the given String according to the default [EMAIL PROTECTED] 
CSVStrategy}.
    * 
    * @param s CSV String to be parsed.
    * @return parsed String matrix (which is never null)
    * @throws IOException in case of error
-   * @see #setStrategy()
    */
   public static String[][] parse(String s) throws IOException {
     if (s == null) {
@@ -96,7 +95,7 @@
   }
   
   /**
-   * Parses the first line only according to the default CSV strategy.
+   * Parses the first line only according to the default [EMAIL PROTECTED] 
CSVStrategy}.
    * 
    * Parsing empty string will be handled as valid records containing zero
    * elements, so the following property holds: parseLine("").length == 0.
@@ -104,7 +103,6 @@
    * @param s CSV String to be parsed.
    * @return parsed String vector (which is never null)
    * @throws IOException in case of error
-   * @see #setStrategy()
    */
   public static String[] parseLine(String s) throws IOException {
     if (s == null) {



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

Reply via email to