mirror of
https://github.com/java-diff-utils/java-diff-utils.git
synced 2026-03-13 10:11:17 +08:00
fixes #191 - downgraded patch to Java 8 compliance
This commit is contained in:
@@ -839,7 +839,7 @@ public class DiffRowGeneratorTest {
|
||||
|
||||
@Test
|
||||
public void testIssue188HangOnExamples() throws IOException, URISyntaxException {
|
||||
try (FileSystem zipFs = FileSystems.newFileSystem(Paths.get("target/test-classes/com/github/difflib/text/test.zip"), null);) {
|
||||
try (FileSystem zipFs = FileSystems.newFileSystem(Paths.get("target/test-classes/com/github/difflib/text/test.zip"), (ClassLoader) null);) {
|
||||
List<String> original = Files.readAllLines(zipFs.getPath("old.html"));
|
||||
List<String> revised = Files.readAllLines(zipFs.getPath("new.html"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user