Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java
index 95fcc3ed3c1..9ff123c91e4 100644
--- a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java
+++ b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/change/LoadDeltasBetweenBranches.java
@@ -45,7 +45,7 @@ public class LoadDeltasBetweenBranches extends AbstractDatastoreCallable<List<Ch
private static final String SELECT_BASE_TRANSACTION =
"select baseline_transaction_id from osee_branch where branch_id = ?";
- private final HashMap<Long, ModificationType> changeByGammaId = new HashMap<Long, ModificationType>();
+ private final HashMap<Long, ModificationType> changeByGammaId = new HashMap<>();
private final Long sourceBranchId, destinationBranchId, mergeBranchId;
private final Integer destinationHeadTxId, mergeTxId;
@@ -74,7 +74,7 @@ public class LoadDeltasBetweenBranches extends AbstractDatastoreCallable<List<Ch
@Override
public List<ChangeItem> call() throws Exception {
- List<ChangeItem> changeData = new LinkedList<ChangeItem>();
+ List<ChangeItem> changeData = new LinkedList<>();
Conditions.checkExpressionFailOnTrue(sourceBranchId.equals(destinationBranchId),
"Unable to compute deltas between transactions on the same branch [%s]", sourceBranchId);
@@ -119,7 +119,7 @@ public class LoadDeltasBetweenBranches extends AbstractDatastoreCallable<List<Ch
}
private void loadByItemId(Collection<ChangeItem> changeData, int txJoinId, ChangeItemFactory factory, int sourceBaselineTxId) throws OseeCoreException {
- HashMap<Integer, ChangeItem> changesByItemId = new HashMap<Integer, ChangeItem>();
+ HashMap<Integer, ChangeItem> changesByItemId = new HashMap<>();
IdJoinQuery idJoin = joinFactory.createIdJoinQuery();
try {

Back to the top