Skip to content
Snippets Groups Projects
Commit c8138af3 authored by tjc's avatar tjc
Browse files

catch null mapping

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@13900 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 964405e1
No related branches found
No related tags found
No related merge requests found
......@@ -1965,6 +1965,11 @@ public class ChadoTransactionManager
{
Hashtable mappingIds = feature.getNewIdMapToOldId();
if(mappingIds == null)
{
logger4j.debug("No mapping found.");
return;
}
Object newKeys[] = segmentRangeStore.keySet().toArray();
uniqueName = new String[newKeys.length];
oldUniqueNames = new String[newKeys.length];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment