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/revision/acquirer/AttributeChangeAcquirer.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/acquirer/AttributeChangeAcquirer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/acquirer/AttributeChangeAcquirer.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/acquirer/AttributeChangeAcquirer.java
index ed88ad59fd4..15233e076ae 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/acquirer/AttributeChangeAcquirer.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/acquirer/AttributeChangeAcquirer.java
@@ -50,9 +50,9 @@ public class AttributeChangeAcquirer extends ChangeAcquirer {
@Override
public ArrayList<ChangeBuilder> acquireChanges() throws OseeCoreException {
- Map<Integer, ChangeBuilder> attributesWasValueCache = new HashMap<Integer, ChangeBuilder>();
- Map<Integer, ModificationType> artModTypes = new HashMap<Integer, ModificationType>();
- Set<Integer> modifiedArtifacts = new HashSet<Integer>();
+ Map<Integer, ChangeBuilder> attributesWasValueCache = new HashMap<>();
+ Map<Integer, ModificationType> artModTypes = new HashMap<>();
+ Set<Integer> modifiedArtifacts = new HashSet<>();
JdbcStatement chStmt = ConnectionHandler.getStatement();
boolean hasBranch = getSourceBranch() != null;
long time = System.currentTimeMillis();

Back to the top