We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dedd98b commit 312ff2eCopy full SHA for 312ff2e
1 file changed
src/main/java/org/variantsync/diffdetective/variation/diff/VariationDiff.java
@@ -535,10 +535,20 @@ public ConsistencyResult isConsistent() {
535
return ConsistencyResult.Success();
536
}
537
538
+ /**
539
+ * @see DiffNode#isSameAs
540
+ */
541
public boolean isSameAs(VariationDiff<L> b) {
542
return getRoot().isSameAs(b.getRoot());
543
544
545
546
+ * @see DiffNode#isSameAsIgnoringLineNumbers
547
548
+ public boolean isSameAsIgnoringLineNumbers(VariationDiff<L> b) {
549
+ return getRoot().isSameAsIgnoringLineNumbers(b.getRoot());
550
+ }
551
+
552
@Override
553
public String toString() {
554
return "VariationDiff of " + source;
0 commit comments