Skip to content

Commit

Permalink
feat: remove reflection class operation
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 30, 2023
1 parent a2ce595 commit bba5533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ class ClassConverter {
@Inject
ClassConverter(Reflections reflections) {

ClassOperation classOperation = new ReflectionClassOperation(reflections);
this.reflections = reflections;
this.readerFactory = classOperation.getFieldReaderFactory();
this.writerFactory = classOperation.getFieldWriterFactory();
this.instanceSupplierFactory = classOperation.getInstanceSupplierFactory();
this.readerFactory = new ReflectionFieldReaderFactory(reflections);
this.writerFactory = new FieldWriterFactory(reflections);
this.instanceSupplierFactory = new ReflectionInstanceSupplierFactory(reflections);
this.constructorMetadataBuilder = new ConstructorMetadataBuilder(reflections);
}

Expand Down

This file was deleted.

0 comments on commit bba5533

Please sign in to comment.