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.java2
1 files changed, 1 insertions, 1 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 4406872f9..69ceab4d9 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
@@ -43,7 +43,7 @@ public class FilePatch2 implements IFilePatch2 {
private IPath fOldPath, fNewPath;
private long oldDate, newDate;
- private List<Hunk> fHunks= new ArrayList<Hunk>();
+ private List<Hunk> fHunks= new ArrayList<>();
private DiffProject fProject; //the project that contains this diff
private String header;
private int addedLines, removedLines;

Back to the top