Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2016-05-17 21:27:02 +0000
committerGerrit Code Review @ Eclipse.org2016-05-17 21:27:04 +0000
commit67d02912d7a56ddb22b2c6d9e64ac64765b96e5b (patch)
treec3bc7f4ff5c07599264abd34bc834da4b6f14299
parent85ed6fd1fe748967765b9f19bf3b065b90bfc56a (diff)
parent0e6653bf17a892c2e207953f99379504a25f5b68 (diff)
downloadegit-67d02912d7a56ddb22b2c6d9e64ac64765b96e5b.tar.gz
egit-67d02912d7a56ddb22b2c6d9e64ac64765b96e5b.tar.xz
egit-67d02912d7a56ddb22b2c6d9e64ac64765b96e5b.zip
Merge "Remove unnecessary @SuppressWarnings("resource")"
-rw-r--r--org.eclipse.egit.core/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparator.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/org.eclipse.egit.core/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparator.java b/org.eclipse.egit.core/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparator.java
index e8258a4e5d..642ba7cf62 100644
--- a/org.eclipse.egit.core/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparator.java
+++ b/org.eclipse.egit.core/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparator.java
@@ -39,7 +39,6 @@ class GitResourceVariantComparator implements IResourceVariantComparator {
}
@Override
- @SuppressWarnings("resource")
public boolean compare(IResource local, IResourceVariant remote) {
if (!local.exists() || remote == null) {
return false;

Back to the top