Skip to content

Commit

Permalink
http91 fix format issues
Browse files Browse the repository at this point in the history
Signed-off-by: davidradl <[email protected]>
  • Loading branch information
davidradl committed Oct 10, 2024
1 parent a3a089e commit 1df51fe
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,12 @@ public LookupRuntimeProvider getLookupRuntimeProvider(LookupContext lookupContex
FactoryUtil.discoverFactory(
this.dynamicTableFactoryContext.getClassLoader(),
LookupQueryCreatorFactory.class,
lookupConfig.getReadableConfig().getOptional(
LOOKUP_QUERY_CREATOR_IDENTIFIER)
.orElse(
(lookupConfig.getLookupMethod()
.equalsIgnoreCase("GET") ?
GenericGetQueryCreatorFactory.IDENTIFIER :
GenericJsonQueryCreatorFactory.IDENTIFIER)
)
lookupConfig.getReadableConfig().getOptional(LOOKUP_QUERY_CREATOR_IDENTIFIER)
.orElse(
(lookupConfig.getLookupMethod().equalsIgnoreCase("GET") ?
GenericGetQueryCreatorFactory.IDENTIFIER :
GenericJsonQueryCreatorFactory.IDENTIFIER)
)
);
ReadableConfig readableConfig = lookupConfig.getReadableConfig();
LookupQueryCreator lookupQueryCreator =
Expand Down

0 comments on commit 1df51fe

Please sign in to comment.