Skip to content

Commit

Permalink
Preparing to release version 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jbax committed Feb 5, 2017
1 parent 9b4dc35 commit e9b01a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ a dedicated team of experts are ready to assist you).
### Installation ###


Just download the jar file from [here](http://oss.sonatype.org/content/repositories/releases/com/univocity/univocity-parsers/2.3.0/univocity-parsers-2.3.0.jar).
Just download the jar file from [here](http://oss.sonatype.org/content/repositories/releases/com/univocity/univocity-parsers/2.3.1/univocity-parsers-2.3.1.jar).

Or, if you use maven, simply add the following to your `pom.xml`

Expand All @@ -124,7 +124,7 @@ Or, if you use maven, simply add the following to your `pom.xml`
<dependency>
<groupId>com.univocity</groupId>
<artifactId>univocity-parsers</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
<type>jar</type>
</dependency>
...
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.univocity</groupId>
<artifactId>univocity-parsers</artifactId>
<version>2.3.1-SNAPSHOT</version>
<version>2.3.1</version>
<name>univocity-parsers</name>
<packaging>jar</packaging>
<description>uniVocity's open source parsers for processing different text formats using a consistent API</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,7 @@ private void writeRow() {
* Identifies the starting character index of a value being written if leading whitespaces are to be discarded.
* <p><b>Implementation note</b> whitespaces are considered all characters where {@code ch <= ' '} evaluates to {@code true}
*
* @param whitespaceRangeStart starting range after which characters will be considered whitespace
* @param element the String to be scanned for leading whitespaces.
*
* @return the index of the first non-whitespace character in the given element.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ public final void markAsNonFatal() {

/**
* Marks the error as handled so it doesn't trigger a {@link ProcessorErrorHandler} again.
* @param handler the {@link ProcessorErrorHandler} used to handle this exception.
*/
public final void markAsHandled(ProcessorErrorHandler handler) {
this.handled = handler != null && !(handler instanceof NoopProcessorErrorHandler) && !(handler instanceof NoopRowProcessorErrorHandler);
Expand Down

0 comments on commit e9b01a9

Please sign in to comment.