File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java-diff-utils/src/test/java/com/github/difflib/examples Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1212public class ComputeDifference {
1313
1414 private static final String ORIGINAL = TestConstants .MOCK_FOLDER + "original.txt" ;
15- private static final String RIVISED = TestConstants .MOCK_FOLDER + "revised.txt" ;
15+ private static final String REVISED = TestConstants .MOCK_FOLDER + "revised.txt" ;
1616
1717 public static void main (String [] args ) throws IOException {
1818 List <String > original = Files .readAllLines (new File (ORIGINAL ).toPath ());
19- List <String > revised = Files .readAllLines (new File (RIVISED ).toPath ());
19+ List <String > revised = Files .readAllLines (new File (REVISED ).toPath ());
2020
2121 // Compute diff. Get the Patch object. Patch is the container for computed deltas.
2222 Patch <String > patch = DiffUtils .diff (original , revised );
You can’t perform that action at this time.
0 commit comments