Skip to content

Commit ebb4ba3

Browse files
committed
Java 5 to Java 8 updates.
1 parent 019ecf5 commit ebb4ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/java/org/bouncycastle/pqc/crypto/test/MLDSATest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ private static List<TestVector> parseTestVectors(InputStream src)
655655
{
656656
// Skip comments and empty lines
657657
line = line.split("//")[0].trim();
658-
if (line.isEmpty())
658+
if (line.length() == 0)
659659
{
660660
continue;
661661
}

0 commit comments

Comments
 (0)