Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
javagl committed May 2, 2024
1 parent b67053a commit 236a9a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/tools/gltfExtensionsUtils/StructuralMetadataMerger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,10 @@ export class StructuralMetadataMerger {
const newEnumKeys = targetSchema.listEnumKeys();
if (oldClassKeys != newClassKeys || oldEnumKeys != newEnumKeys) {
const newId = "SCHEMA-ID-" + crypto.randomUUID();
log("Target schema was modified - assigning ID "+newId);
targetSchema.setId(newId)
log("Target schema was modified - assigning ID " + newId);
targetSchema.setId(newId);
}


log("Merging property tables...");
StructuralMetadataMerger.mergePropertyTables(
targetDocument,
Expand Down

0 comments on commit 236a9a3

Please sign in to comment.