Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java
index ffb1ab191..80858fb02 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/patch/WorkspacePatcherUI.java
@@ -24,19 +24,22 @@ import org.eclipse.core.resources.IProject;
*/
public class WorkspacePatcherUI {
/**
- * Returns a string that must be the first line of a workspace patch (a multi-project patch
- * that is understood by the Apply Patch wizard). Each project to be included in the patch
- * must be prefixed by the line obtained from the <code>getWorkspacePatchProjectHeader()</code>.
- * This snippet outlines how the a workspace patch is to be created:
+ * Returns a string that must be the first line of a workspace patch (a
+ * multi-project patch that is understood by the Apply Patch wizard). Each
+ * project to be included in the patch must be prefixed by the line obtained
+ * from the <code>getWorkspacePatchProjectHeader()</code>. This snippet outlines
+ * how the a workspace patch is to be created:
+ *
* <pre>
* //Write out workspace patch header
* stream.println(CompareUI.getWorkspacePatchHeader());
- * for (int i=0; i<projects.length; i++){
+ * for (int i=0; i&lt;projects.length; i++){
* //Write out project header
* stream.println(CompareUI.getWorkspacePatchProjectHeader(projects[i]);
* //Write out patches in Unified Diff format
* }
- * </pre>
+ * </pre>
+ *
* @return String
* @see WorkspacePatcherUI#getWorkspacePatchProjectHeader(IProject)
* @since 3.2

Back to the top