Skip to content

Commit

Permalink
fix compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bvsharp committed Apr 23, 2024
1 parent f37279f commit 263e3d5
Showing 1 changed file with 1 addition and 6 deletions.
Expand Up @@ -33,14 +33,9 @@ void setup() {
DSLContext context = DSL.using(new MockConnection(
new ResultSetRepositoryTestDataProvider()), SQLDialect.POSTGRES);

<<<<<<< HEAD
EntityTypeRepository entityTypeRepository = new EntityTypeRepository(readerContext, context, new ObjectMapper());
this.repo = new ResultSetRepository(context, entityTypeRepository);
=======
EntityTypeRepository entityTypeRepository = new EntityTypeRepository(context, new ObjectMapper());
EntityTypeFlatteningService entityTypeFlatteningService = new EntityTypeFlatteningService(entityTypeRepository);
EntityTypeFlatteningService entityTypeFlatteningService = new EntityTypeFlatteningService(entityTypeRepository, new ObjectMapper());
this.repo = new ResultSetRepository(context, entityTypeFlatteningService);
>>>>>>> ea7045f (MODFQMMGR-230: Update mod-fqm-manager to support nested entity types)
}

@Test
Expand Down

0 comments on commit 263e3d5

Please sign in to comment.