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-crypto.git
The following commit(s) were added to refs/heads/master by this push: new 5f2cf91 Use final. 5f2cf91 is described below commit 5f2cf91fd666c8e68a39a453d5ab1893179b4989 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 21 12:54:44 2020 -0500 Use final. --- src/test/java/org/apache/commons/crypto/CryptoTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/crypto/CryptoTest.java b/src/test/java/org/apache/commons/crypto/CryptoTest.java index ca16fba..7c6762f 100644 --- a/src/test/java/org/apache/commons/crypto/CryptoTest.java +++ b/src/test/java/org/apache/commons/crypto/CryptoTest.java @@ -50,7 +50,7 @@ public class CryptoTest { public void testMain() throws Throwable { try { Crypto.main(new String[0]); - } catch (Throwable e) { + } catch (final Throwable e) { final Throwable loadingError = Crypto.getLoadingError(); System.err.println("Special case; LoadingError = " + loadingError); throw loadingError != null ? loadingError : e;