Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java
index 649268d9280..bfa8c9a32ee 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/httpRequests/UpdateBranchArchivedStateHttpRequestOperation.java
@@ -49,16 +49,16 @@ public final class UpdateBranchArchivedStateHttpRequestOperation extends Abstrac
if (Status.OK.getStatusCode() == response.getStatus()) {
Branch branch = BranchManager.getBranch(branchUuid);
branch.setArchived(true);
- OseeEventManager.kickBranchEvent(getClass(), new BranchEvent(BranchEventType.ArchiveStateUpdated,
- branchUuid));
+ OseeEventManager.kickBranchEvent(getClass(),
+ new BranchEvent(BranchEventType.ArchiveStateUpdated, branchUuid));
}
} else {
Response response = proxy.unarchiveBranch(branchUuid);
if (Status.OK.getStatusCode() == response.getStatus()) {
Branch branch = BranchManager.getBranch(branchUuid);
branch.setArchived(false);
- OseeEventManager.kickBranchEvent(getClass(), new BranchEvent(BranchEventType.ArchiveStateUpdated,
- branchUuid));
+ OseeEventManager.kickBranchEvent(getClass(),
+ new BranchEvent(BranchEventType.ArchiveStateUpdated, branchUuid));
}
}
}

Back to the top