File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -498,19 +498,19 @@ public boolean isQuoting() {
498498 return quoteChar != null ;
499499 }
500500
501- /**
502- * Parses the specified content.
503- *
504- * <p>
505- * See also the various static parse methods on {@link CSVParser}.
506- * </p>
507- *
508- * @param in
509- * the input stream
510- * @return a parser over a stream of {@link CSVRecord}s.
511- * @throws IOException
512- * If an I/O error occurs
513- */
501+ /**
502+ * Parses the specified content.
503+ *
504+ * <p>
505+ * See also the various static parse methods on {@link CSVParser}.
506+ * </p>
507+ *
508+ * @param in
509+ * the input stream
510+ * @return a parser over a stream of {@link CSVRecord}s.
511+ * @throws IOException
512+ * If an I/O error occurs
513+ */
514514 public CSVParser parse (final Reader in ) throws IOException {
515515 return new CSVParser (in , this );
516516 }
You can’t perform that action at this time.
0 commit comments