Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-09-17 10:30:19 +0000
committerMatthias Sohn2015-09-17 13:28:08 +0000
commite686eb1d45e70f358b6673534cb70348674c9614 (patch)
tree6f96a1b65703214e674351915adce6ec1aeba7f0 /org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java
parent6d548e3038a6f8f94943d3cc8870b78e0fb20544 (diff)
downloadegit-e686eb1d45e70f358b6673534cb70348674c9614.tar.gz
egit-e686eb1d45e70f358b6673534cb70348674c9614.tar.xz
egit-e686eb1d45e70f358b6673534cb70348674c9614.zip
Add missing @Override annotations to all EGit bundles
Bug: 477689 Change-Id: I490e6558db5133a60caf00af2b996feae0e2e832 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java')
-rw-r--r--org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java b/org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java
index 2ead600961..131d629397 100644
--- a/org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java
+++ b/org.eclipse.egit.core/src/org/eclipse/egit/core/op/StashApplyOperation.java
@@ -53,9 +53,11 @@ public class StashApplyOperation implements IEGitOperation {
this.commit = commit;
}
+ @Override
public void execute(IProgressMonitor monitor) throws CoreException {
IWorkspaceRunnable action = new IWorkspaceRunnable() {
+ @Override
public void run(IProgressMonitor pm) throws CoreException {
pm.beginTask("", 3); //$NON-NLS-1$
try {
@@ -89,6 +91,7 @@ public class StashApplyOperation implements IEGitOperation {
monitor != null ? monitor : new NullProgressMonitor());
}
+ @Override
public ISchedulingRule getSchedulingRule() {
return RuleUtil.getRule(repository);
}

Back to the top