Skip to content

Commit

Permalink
[fact] Convert Spoon3dmMerge to Kotlin (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
slarse authored Feb 23, 2021
1 parent d35fced commit a7393e4
Show file tree
Hide file tree
Showing 5 changed files with 357 additions and 367 deletions.
2 changes: 1 addition & 1 deletion src/main/java/se/kth/spork/cli/Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public static Pair<String, Integer> merge(

LOGGER.info(() -> "Initiating merge");
Pair<CtElement, Integer> merge =
Spoon3dmMerge.merge(baseModule, leftModule, rightModule);
Spoon3dmMerge.INSTANCE.merge(baseModule, leftModule, rightModule);
CtModule mergeTree = (CtModule) merge.first;
int numConflicts = merge.second;

Expand Down
360 changes: 0 additions & 360 deletions src/main/java/se/kth/spork/spoon/Spoon3dmMerge.java

This file was deleted.

Loading

0 comments on commit a7393e4

Please sign in to comment.