Skip to content

Commit 1a11c86

Browse files
committed
Use final.
1 parent fd66015 commit 1a11c86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/cli/TypeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public static FileInputStream openFile(final String str) throws ParseException
237237
{
238238
return new FileInputStream(str);
239239
}
240-
catch (FileNotFoundException e)
240+
catch (final FileNotFoundException e)
241241
{
242242
throw new ParseException("Unable to find file: " + str);
243243
}

0 commit comments

Comments
 (0)