Skip to content

Commit

Permalink
added getinstance
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-jalgaonkar committed Jun 24, 2024
1 parent 5b27bd0 commit 9199dae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class CreateLoggingFilter implements Filter<CreateRequest, CreateResponse

@Override
public Filter<CreateRequest,CreateResponse> getNewInstance(){
return new CreateLoggingFilter<>();
return new CreateLoggingFilter<CreateRequest,CreateResponse>();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GetLoggingFilter implements Filter<GetRequest, GetResponse>, Loggin

@Override
public Filter<GetRequest,GetResponse> getNewInstance(){
return new GetLoggingFilter<>();
return new GetLoggingFilter<GetRequest,GetResponse>();
}

@Override
Expand Down

0 comments on commit 9199dae

Please sign in to comment.