Skip to content

Commit

Permalink
Remove spaces from identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
dustine32 committed Jul 23, 2023
1 parent fe64452 commit b1bd271
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,9 @@ else if((entityStrategy.equals(EntityStrategy.YeastCyc) && bp_entity instanceof
}
}
}
if (id!=null) {
id = id.replace(" ", "_");
}
return id;
}

Expand Down

0 comments on commit b1bd271

Please sign in to comment.