1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Reduce method visibility when possible

Reduce method visibility for package private classes when possible.

In the case of abstract classes that will eventually be made public,
the class has been made public and a package-private constructor has
been added.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-29 22:05:08 -07:00
committed by Rob Winch
parent ec6a4cb3f0
commit 8d3f039f76
155 changed files with 508 additions and 477 deletions
@@ -144,7 +144,7 @@ public class AuthenticationTagTests {
String lastMessage = null;
public String getLastMessage() {
String getLastMessage() {
return this.lastMessage;
}