Remove empty block

Refactor a few classes so that empty blocks are not longer used. For
example, rather than:

	if(x) {
	} else {
		i++;
	}

use:

	if(!x) {
		i++;
	}

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-24 18:42:11 -07:00
committed by Rob Winch
parent 37fa94fafc
commit b5d499e2eb
3 changed files with 13 additions and 21 deletions

View File

@@ -533,10 +533,7 @@ public class AbstractAuthenticationProcessingFilterTests {
}
public void doFilter(ServletRequest request, ServletResponse response) {
if (expectToProceed) {
}
else {
if (!expectToProceed) {
fail("Did not expect filter chain to proceed");
}
}