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
commit 7a7b9310e2842ba3c216f3ccb8b2c910dd9c9086 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 12:32:57 2026 -0500 Javadoc --- src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java b/src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java index 291b23b7..8d225fa2 100644 --- a/src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java +++ b/src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java @@ -235,10 +235,10 @@ void testCloseTestRepeat() throws Exception { } } + /** Uses the small data set in {@link TestData}. */ @Test void testCryptoTest() throws Exception { for (final String tran : transformations) { - /** Uses the small data set in {@link TestData} */ cipherTests = TestData.getTestData(tran); assertNotNull(cipherTests, "TestData cannot supply data for: " + tran); for (int i = 0; i != cipherTests.length; i += 5) {
