Skip to content

Commit

Permalink
Completed initial refactor of model classes. Still need to cleanup co…
Browse files Browse the repository at this point in the history
…ntainer classes.
  • Loading branch information
david-waltermire committed May 6, 2024
1 parent c33018d commit 46cf5e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,17 +209,17 @@ public Exports(@NonNull List<? extends M> importedModules) {
// as an imported one
Map<QName, FL> exportedFlagDefinitions = flags.collect(
CustomCollectors.toMap(
IFlagDefinition::getXmlQName,
IFlagDefinition::getDefinitionQName,
CustomCollectors.identity(),
AbstractModule::handleShadowedDefinitions));
Map<QName, FI> exportedFieldDefinitions = fields.collect(
CustomCollectors.toMap(
IFieldDefinition::getXmlQName,
IFieldDefinition::getDefinitionQName,
CustomCollectors.identity(),
AbstractModule::handleShadowedDefinitions));
Map<QName, A> exportedAssemblyDefinitions = assemblies.collect(
CustomCollectors.toMap(
IAssemblyDefinition::getXmlQName,
IAssemblyDefinition::getDefinitionQName,
CustomCollectors.identity(),
AbstractModule::handleShadowedDefinitions));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public Object readItemField(Object parentItem, IBoundInstanceModelFieldComplex i
parentItem,
instance.getDefinition(),
instance.getJsonProperties(),
instance.getJsonKey(),
instance.getEffectiveJsonKey(),
getProblemHandler());
}

Expand Down

0 comments on commit 46cf5e9

Please sign in to comment.