Fix last checkstyle error
This commit is contained in:
parent
87b75e02a3
commit
f7d7d63ee1
|
@ -177,7 +177,8 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
|||
* @since 1.5
|
||||
*/
|
||||
@SuppressWarnings("resource")
|
||||
public static CSVParser parse(final InputStream inputStream, final Charset charset, final CSVFormat format) throws IOException {
|
||||
public static CSVParser parse(final InputStream inputStream, final Charset charset, final CSVFormat format)
|
||||
throws IOException {
|
||||
Assertions.notNull(inputStream, "inputStream");
|
||||
Assertions.notNull(format, "format");
|
||||
return parse(new InputStreamReader(inputStream, charset), format);
|
||||
|
|
Loading…
Reference in New Issue