Skip to content

Commit

Permalink
feat: remove 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 9a902a8 commit a2ce595
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 59 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class ClassConverter {

@Inject
ClassConverter(Reflections reflections) {
ClassOperation classOperation = ClassOperationFactory.INSTANCE.get();

ClassOperation classOperation = new ReflectionClassOperation(reflections);
this.reflections = reflections;
this.readerFactory = classOperation.getFieldReaderFactory();
this.writerFactory = classOperation.getFieldWriterFactory();
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
public class FieldWriterFactory implements Function<Field, FieldWriter> {



private Reflections reflections;

@Inject
Expand Down

0 comments on commit a2ce595

Please sign in to comment.