Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java')
-rw-r--r--bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java
index f66faad94..4160b131f 100644
--- a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java
+++ b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/FilePatch2.java
@@ -58,17 +58,17 @@ public class FilePatch2 implements IFilePatch2 {
* @param newPath the path of the after state
* @param newDate the timestamp of the after state
*/
- public FilePatch2(IPath oldPath, long oldDate, IPath newPath, long newDate) {
+ public FilePatch2(IPath oldPath, long oldDate, IPath newPath, long newDate) {
this.fOldPath= oldPath;
this.oldDate = oldDate;
this.fNewPath= newPath;
this.newDate = newDate;
}
- /**
- * Return the parent project or <code>null</code> if there isn't one.
- * @return the parent project or <code>null</code>
- */
+ /**
+ * Return the parent project or <code>null</code> if there isn't one.
+ * @return the parent project or <code>null</code>
+ */
public DiffProject getProject() {
return this.fProject;
}

Back to the top