Skip to content

Commit

Permalink
refactor: remove final at mongodb template
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Jul 13, 2023
1 parent c85e8cf commit ef1e2e3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
@Typed(MongoDBTemplate.class)
class DefaultMongoDBTemplate extends AbstractDocumentTemplate implements MongoDBTemplate {

private final Instance<MongoDBDocumentManager> manager;
private Instance<MongoDBDocumentManager> manager;

private final DocumentEntityConverter converter;
private DocumentEntityConverter converter;

private final EntitiesMetadata entities;
private EntitiesMetadata entities;

private final Converters converters;
private Converters converters;

private final DocumentEventPersistManager persistManager;
private DocumentEventPersistManager persistManager;


@Inject
Expand All @@ -64,7 +64,7 @@ class DefaultMongoDBTemplate extends AbstractDocumentTemplate implements MongoDB
}

DefaultMongoDBTemplate() {
this(null, null, null, null, null);

}

@Override
Expand Down

0 comments on commit ef1e2e3

Please sign in to comment.