1
0
mirror of synced 2026-05-22 21:33:16 +00:00
Files
spring-security/etc
Phillip Webb b5d499e2eb 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
2020-08-24 17:33:07 -05:00
..
2020-08-24 17:33:07 -05:00
2019-04-26 15:34:45 -05:00