Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java28
1 files changed, 13 insertions, 15 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java
index ce9d9645c..ac4ae690e 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/structuremergeviewer/StructureCreator.java
@@ -439,21 +439,19 @@ public abstract class StructureCreator implements IStructureCreator2 {
* <code>compareFilters</code> is not empty, the filters are applied to each
* line of each node's text representation.
*
- * @param node1
- * @param contributor1
- * either 'A', 'L', or 'R' for ancestor, left or right
- * contributor
- * @param node2
- * @param contributor2
- * either 'A', 'L', or 'R' for ancestor, left or right
- * contributor
- * @param ignoreWhitespace
- * if <code>true</code> whitespace characters will be ignored
- * when determining equality. Note: Will bypass any custom ignore
- * whitespace behaviors contributed through implementations of
- * <code>org.eclipse.compare.structuremergeviewer.IStructureCreator.getContents()</code>
- * @param compareFilters
- * the filters used to customize the comparison of lines of text.
+ * @param node1 first node
+ * @param contributor1 either 'A', 'L', or 'R' for ancestor, left or right
+ * contributor
+ * @param node2 second node
+ * @param contributor2 either 'A', 'L', or 'R' for ancestor, left or right
+ * contributor
+ * @param ignoreWhitespace if <code>true</code> whitespace characters will be
+ * ignored when determining equality. Note: Will bypass
+ * any custom ignore whitespace behaviors contributed
+ * through implementations of
+ * <code>org.eclipse.compare.structuremergeviewer.IStructureCreator.getContents()</code>
+ * @param compareFilters the filters used to customize the comparison of lines
+ * of text.
* @return whether the two nodes are equal for comparison purposes
* @noreference This method is not intended to be referenced by clients.
* @since 3.6

Back to the top