Skip to content

Commit

Permalink
fix: useless semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfaller committed Oct 13, 2024
1 parent 31eaead commit 13e4fc8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/kotlin/se/kth/spork/spoon/Spoon3dmMerge.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ package se.kth.spork.spoon

import com.github.gumtreediff.matchers.CompositeMatchers
import com.github.gumtreediff.matchers.MappingStore
import com.github.gumtreediff.matchers.Matcher
import com.github.gumtreediff.matchers.Matchers
import com.github.gumtreediff.tree.Tree
import gumtree.spoon.builder.SpoonGumTreeBuilder
import se.kth.spork.base3dm.ChangeSet
Expand Down Expand Up @@ -359,12 +357,12 @@ object Spoon3dmMerge {
}

private fun matchTrees(src: Tree, dst: Tree): MappingStore {
val matcher = CompositeMatchers.SimpleIdGumtree();
val matcher = CompositeMatchers.SimpleIdGumtree()
return matcher.match(src, dst)
}

private fun matchTreesLeftRight(src: Tree, dst: Tree): MappingStore {
val matcher = CompositeMatchers.SimpleIdGumtree();
val matcher = CompositeMatchers.SimpleIdGumtree()
return matcher.match(src, dst)
}

Expand Down

0 comments on commit 13e4fc8

Please sign in to comment.