Skip to content

Commit 1e70eaa

Browse files
committed
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
1 parent 5db1a2c commit 1e70eaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public static CSVParser parse(String string, final CSVFormat format) throws IOEx
195195
* If an I/O error occurs
196196
*/
197197
public static CSVParser parse(URL url, Charset charset, final CSVFormat format) throws IOException {
198-
return new CSVParser(new InputStreamReader(url.openStream(),
198+
return new CSVParser(new InputStreamReader(url.openStream(),
199199
charset == null ? Charset.forName("UTF-8") : charset), format);
200200
}
201201

0 commit comments

Comments
 (0)