Skip to content

Commit

Permalink
[RESTEASY-1938] Making CdiRequestDispatcher.instance field final
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Jul 10, 2018
1 parent 9c65c1b commit a018abd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
*/
@Vetoed
public class CdiRequestDispatcher extends RequestDispatcher {
private Instance<Object> instance;
private final Instance<Object> instance;

public CdiRequestDispatcher(SynchronousDispatcher dispatcher, ResteasyProviderFactory providerFactory,
SecurityDomain domain){
this(dispatcher, providerFactory, domain, CDI.current());
Expand Down

0 comments on commit a018abd

Please sign in to comment.