Make checkstyle happy: remove trailing whitespace

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-10 11:05:10 +00:00
parent 5db1a2c110
commit 1e70eaaaf4
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
* If an I/O error occurs * If an I/O error occurs
*/ */
public static CSVParser parse(URL url, Charset charset, final CSVFormat format) throws IOException { public static CSVParser parse(URL url, Charset charset, final CSVFormat format) throws IOException {
return new CSVParser(new InputStreamReader(url.openStream(), return new CSVParser(new InputStreamReader(url.openStream(),
charset == null ? Charset.forName("UTF-8") : charset), format); charset == null ? Charset.forName("UTF-8") : charset), format);
} }