Skip to content

Commit

Permalink
Fix for issue #703
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed May 1, 2024
1 parent b63c7b6 commit 28f29e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private void createASTDiffsForMovedDeclarations() {
Tree rightRoot = TreeUtilFunctions.getFinalRoot(mappings.get(0).second);
ExtendedMultiMappingStore store = new ExtendedMultiMappingStore(leftRoot, rightRoot);
for(Mapping m : mappings) {
store.addMapping(m.first, m.second);
store.addMappingRecursively(m.first, m.second);
}
ASTDiff diff = new ASTDiff(pair.first, pair.second, treeContextPairs.first, treeContextPairs.second, store, new SimplifiedChawatheScriptGenerator().computeActions(store, null, null));
projectASTDiff.addMoveASTDiff(diff);
Expand Down

0 comments on commit 28f29e3

Please sign in to comment.