@@ -145,7 +145,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
145145 * @throws IOException
146146 * If an I/O error occurs
147147 */
148- public static CSVParser parse (File file , final CSVFormat format ) throws IOException {
148+ public static CSVParser parse (final File file , final CSVFormat format ) throws IOException {
149149 Assertions .notNull (file , "file" );
150150 Assertions .notNull (format , "format" );
151151
@@ -165,7 +165,7 @@ public static CSVParser parse(File file, final CSVFormat format) throws IOExcept
165165 * @throws IOException
166166 * If an I/O error occurs
167167 */
168- public static CSVParser parse (String string , final CSVFormat format ) throws IOException {
168+ public static CSVParser parse (final String string , final CSVFormat format ) throws IOException {
169169 Assertions .notNull (string , "string" );
170170 Assertions .notNull (format , "format" );
171171
@@ -192,7 +192,7 @@ public static CSVParser parse(String string, final CSVFormat format) throws IOEx
192192 * @throws IOException
193193 * If an I/O error occurs
194194 */
195- public static CSVParser parse (URL url , Charset charset , final CSVFormat format ) throws IOException {
195+ public static CSVParser parse (final URL url , final Charset charset , final CSVFormat format ) throws IOException {
196196 Assertions .notNull (url , "url" );
197197 Assertions .notNull (charset , "charset" );
198198 Assertions .notNull (format , "format" );
0 commit comments