Skip to content

Commit

Permalink
Undoing change failing TestAllRefactorings
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed Mar 7, 2024
1 parent 46b997a commit 2bfda94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,7 @@ else if(token1WithoutDoubleQuotes.contains(token2WithoutDoubleQuotes)) {
filteredIntersection.add(common);
}
}
if(filteredIntersection.size() == Math.min(tokens1.size(), tokens2.size()) || commonTokens.size() == Math.min(tokens1.size(), tokens2.size())) {
if(filteredIntersection.size() == Math.min(tokens1.size(), tokens2.size())) {
IntersectionReplacement r = new IntersectionReplacement(s1, s2, ReplacementType.CONCATENATION);
for(String key : filteredIntersection) {
List<LeafExpression> expressions1 = statement1.findExpression(key);
Expand Down

0 comments on commit 2bfda94

Please sign in to comment.