diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/repo/MergeConflict.java b/src/de/uni_passau/fim/seibt/gitwrapper/repo/MergeConflict.java new file mode 100644 index 0000000000000000000000000000000000000000..bfd1342496f50560c33bfb3383083b73f5de5bb3 --- /dev/null +++ b/src/de/uni_passau/fim/seibt/gitwrapper/repo/MergeConflict.java @@ -0,0 +1,21 @@ +package de.uni_passau.fim.seibt.gitwrapper.repo; + +import java.util.List; + +public class MergeConflict { + private final List<BlameLine> left; + private final List<BlameLine> right; + + public MergeConflict(List<BlameLine> left, List<BlameLine> right) { + this.left = left; + this.right = right; + } + + public List<BlameLine> getLeft() { + return left; + } + + public List<BlameLine> getRight() { + return right; + } +} diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java index 1f66e8d8953239c2ccec23cbce36d7f41b72cbb4..468d97e4bfa05bb3bd0e89120be8cb73fd78f05d 100644 --- a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java +++ b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java @@ -1,7 +1,6 @@ package de.uni_passau.fim.seibt.gitwrapper.repo; import de.uni_passau.fim.seibt.gitwrapper.process.ProcessExecutor.ExecRes; -import de.uni_passau.fim.seibt.gitwrapper.util.Pair; import org.apache.commons.io.FileUtils; import java.io.File; @@ -420,20 +419,20 @@ public class Repository { * @param file the file to analyze * @return list of failed chunks */ - public Optional<List<Pair<List<BlameLine>, List<BlameLine>>>> blameMergeConflicts(Path file) { + public Optional<List<MergeConflict>> blameMergeConflicts(Path file) { Optional<List<BlameLine>> blame = blameFile(file); if (!blame.isPresent()) { return Optional.empty(); } - List<Pair<List<BlameLine>, List<BlameLine>>> conflicts = new ArrayList<>(); + List<MergeConflict> conflicts = new ArrayList<>(); - Pair<List<BlameLine>, List<BlameLine>> currentConflict = null; + MergeConflict currentConflict = null; String lastMarker = null; for (BlameLine line : blame.get()) { if (line.line.startsWith(CONFLICT_START)) { - currentConflict = new Pair<>(new ArrayList<>(), new ArrayList<>()); + currentConflict = new MergeConflict(new ArrayList<>(), new ArrayList<>()); lastMarker = CONFLICT_START; } else if (line.line.startsWith(CONFLICT_MIDDLE)) { lastMarker = CONFLICT_MIDDLE; @@ -442,10 +441,10 @@ public class Repository { lastMarker = CONFLICT_END; } else if (Objects.equals(lastMarker, CONFLICT_START)) { //noinspection ConstantConditions: there is always a start marker before a relevant line. - currentConflict.getKey().add(line); + currentConflict.getLeft().add(line); } else if (Objects.equals(lastMarker, CONFLICT_MIDDLE)) { //noinspection ConstantConditions: there is always a start marker before a relevant line. - currentConflict.getValue().add(line); + currentConflict.getRight().add(line); } } diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/util/Pair.java b/src/de/uni_passau/fim/seibt/gitwrapper/util/Pair.java deleted file mode 100644 index f8563064f4320ef5c4c45902db0754422dee5a19..0000000000000000000000000000000000000000 --- a/src/de/uni_passau/fim/seibt/gitwrapper/util/Pair.java +++ /dev/null @@ -1,19 +0,0 @@ -package de.uni_passau.fim.seibt.gitwrapper.util; - -public class Pair<T, V> { - private final T key; - private final V value; - - public Pair(T key, V value) { - this.key = key; - this.value = value; - } - - public T getKey() { - return key; - } - - public V getValue() { - return value; - } -}