Skip to content

Commit

Permalink
Updates for angular typescripting, and configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Jun 29, 2024
1 parent e0ee5a8 commit 8354a57
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ public class JWebMPPostStartup implements IGuicePostStartup<JWebMPPostStartup>
@Override
public List<CompletableFuture<Boolean>> postLoad()
{
return List.of(CompletableFuture.supplyAsync(()-> {
return List.of(CompletableFuture.supplyAsync(() -> {
JWebMPJacksonModule jWebMPJacksonModule = new JWebMPJacksonModule();
IGuiceContext.get(ObjectMapper.class)
.registerModule(new JWebMPJacksonModule());
.registerModule(jWebMPJacksonModule);
IGuiceContext.get(ObjectBinderKeys.DefaultObjectMapper)
.registerModule(new JWebMPJacksonModule());
.registerModule(jWebMPJacksonModule);
return true;
}));
}
Expand Down

0 comments on commit 8354a57

Please sign in to comment.