migrateToUUIDIfNecessary();
}
private void migrateToUUIDIfNecessary() {
// Convert name to display name and generate a UUID for the name
MetaProjectImpl metaProjectImpl = (MetaProjectImpl) metaProject;
KnowledgeBase kb = metaProjectImpl.getKnowledgeBase();
if (isInUUIDFormat(kb)) {
return;
}
performUUIDMigration(metaProjectImpl, kb);
}