Skip to content

Commit

Permalink
Remove or with variable that's always false
Browse files Browse the repository at this point in the history
  • Loading branch information
Clayton Walker committed Sep 28, 2016
1 parent e8416a1 commit 776a905
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void contextInitialized(ServletContextEvent event)
{
boolean tmp = Boolean.valueOf(scanAll.trim());
scanProviders = tmp || scanProviders;
scanResources = tmp || scanResources;
scanResources = tmp;
}
String sResources = event.getServletContext().getInitParameter("resteasy.scan.resources");
if (sResources != null)
Expand Down

0 comments on commit 776a905

Please sign in to comment.