Skip to content

Commit

Permalink
Update src/interpreter/InterpretAllOf.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Maciej Urbańczyk <urbanczyk.maciej.95@gmail.com>
  • Loading branch information
jonaslagoni and magicmatatjahu committed May 20, 2021
1 parent a860da8 commit 14ec5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpreter/InterpretAllOf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function interpretAllOf(schema: Schema | boolean, model: CommonMo
Logger.info(`Processing allOf, inheritance is allowed, ${model.$id} inherits from ${interpretedModel.$id}`, model, interpretedModel);
model.addExtendedModel(interpretedModel);
} else {
Logger.info('Processing allOf, inheritance is not allowed. AllOf model is merged together with already interpreted model', model, interpretedModel);
Logger.info('Processing allOf, inheritance is not enabled. AllOf model is merged together with already interpreted model', model, interpretedModel);
interpreter.combineSchemas(allOfSchema, model, schema);
}
}
Expand Down

0 comments on commit 14ec5ed

Please sign in to comment.