This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-cli.git
The following commit(s) were added to refs/heads/master by this push: new 1a11c86 Use final. 1a11c86 is described below commit 1a11c86d750788d512a4c6e5025127e438185fcf Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 20 22:07:46 2020 -0500 Use final. --- src/main/java/org/apache/commons/cli/TypeHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java b/src/main/java/org/apache/commons/cli/TypeHandler.java index ff04610..dc77552 100644 --- a/src/main/java/org/apache/commons/cli/TypeHandler.java +++ b/src/main/java/org/apache/commons/cli/TypeHandler.java @@ -237,7 +237,7 @@ public class TypeHandler { return new FileInputStream(str); } - catch (FileNotFoundException e) + catch (final FileNotFoundException e) { throw new ParseException("Unable to find file: " + str); }