Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java')
-rw-r--r--org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java
index 4729d617..2459de2c 100644
--- a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java
+++ b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/pr/PullRequestContextSynchronizer.java
@@ -77,7 +77,7 @@ public class PullRequestContextSynchronizer extends TaskActivationAdapter {
ObjectId.fromString(request.getHead().getSha())).getTree());
diffs.addTree(walk.parseCommit(
ObjectId.fromString(request.getBase().getSha())).getTree());
- Set<IResource> resources = new HashSet<IResource>();
+ Set<IResource> resources = new HashSet<>();
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
String base = repository.getWorkTree().getAbsolutePath() + "/"; //$NON-NLS-1$
while (diffs.next()) {

Back to the top