Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmisinco2011-04-08 16:26:26 +0000
committerRyan D. Brooks2011-04-08 16:26:26 +0000
commit57a38c0cb2afaaf6f0defb30599ccb2e9106234f (patch)
treeccf05a32626944f9cf02b116d22e87eb13760388 /plugins/org.eclipse.osee.framework.core
parent22d8d7ca6eb8fa01acca19461d1c48bbc8250e60 (diff)
downloadorg.eclipse.osee-57a38c0cb2afaaf6f0defb30599ccb2e9106234f.tar.gz
org.eclipse.osee-57a38c0cb2afaaf6f0defb30599ccb2e9106234f.tar.xz
org.eclipse.osee-57a38c0cb2afaaf6f0defb30599ccb2e9106234f.zip
refactor[bgz_342607]: Remove PurgeDeletedBranches and create generic BranchOperation
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/AbstractOperation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/AbstractOperation.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/AbstractOperation.java
index 3218a424dac..d0b7bf9016f 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/AbstractOperation.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/AbstractOperation.java
@@ -119,7 +119,7 @@ public abstract class AbstractOperation implements IOperation {
* throws OperationCanceledException if the user cancelled the operation via the monitor , otherwise it simply
* returns
*/
- protected static final void checkForCancelledStatus(IProgressMonitor monitor) throws OperationCanceledException {
+ public static final void checkForCancelledStatus(IProgressMonitor monitor) throws OperationCanceledException {
if (monitor.isCanceled()) {
throw new OperationCanceledException();
}

Back to the top