File tree 1 file changed +2
-2
lines changed
java-diff-utils/src/test/java/com/github/difflib/examples
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
public class ComputeDifference {
13
13
14
14
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" ;
16
16
17
17
public static void main (String [] args ) throws IOException {
18
18
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 ());
20
20
21
21
// Compute diff. Get the Patch object. Patch is the container for computed deltas.
22
22
Patch <String > patch = DiffUtils .diff (original , revised );
You can’t perform that action at this time.
0 commit comments