Description
if (tempCongloms != null)
tempCongloms.remove(new Long(conglomId));
tempCongloms.put(new Long(conglomId), conglom);
code guards against tempCongloms being null for the remove, but not for the put. so put the put in the if statement.
Then realized that the remove is superfluous, as the put will overright so just removed the remove.
Attachments
Attachments
Issue Links
- duplicates
-
DERBY-3371 Strange (and untested) code fragment in RAMTransaction.addColumnToConglomerate()
- Closed