1
0
mirror of synced 2026-05-22 13:23:17 +00:00
Files
spring-security/etc/checkstyle
Phillip Webb 9a3fa6e812 Simplify boolean returns
Simplify boolean returns of the form:

	if (b) {
		return true;
	} else {
		return false;
	}

to:

	return b;

Issue gh-8945
2020-08-24 17:33:08 -05:00
..