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/event/FrameworkTransactionData.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/FrameworkTransactionData.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/FrameworkTransactionData.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/FrameworkTransactionData.java
index 816dc24c661..e0f47afe49e 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/FrameworkTransactionData.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/FrameworkTransactionData.java
@@ -48,8 +48,8 @@ public class FrameworkTransactionData {
public Set<Artifact> cacheDeletedArtifacts = new HashSet<Artifact>();
public Set<Artifact> cacheAddedArtifacts = new HashSet<Artifact>();
- // collection of unloaded artifact changes that are NOT currently loaded in the client's artifact cache;
- // where UnloadedArtifact contains artifact id, branch and artifact type id
+ // collection of unloaded artifact changes that are NOT currently loaded in the client's artifact cache;
+ // where UnloadedArtifact contains artifact id, branch and artifact type id
public Set<UnloadedArtifact> unloadedChangedArtifacts = new HashSet<UnloadedArtifact>();
public Set<UnloadedArtifact> unloadedDeletedArtifacts = new HashSet<UnloadedArtifact>();
public Set<UnloadedArtifact> unloadedAddedArtifacts = new HashSet<UnloadedArtifact>();

Back to the top