Skip to content

Commit

Permalink
WW-5336 Fix visibility warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kusalk committed Aug 22, 2023
1 parent 35b0a68 commit 3b515b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ protected void tearDown() throws Exception {

// === internal class to assist in testing

static class InternalMockHttpServletRequest extends MockHttpServletRequest {
protected static class InternalMockHttpServletRequest extends MockHttpServletRequest {
InternalMockRequestDispatcher dispatcher = null;
public RequestDispatcher getRequestDispatcher(String path) {
dispatcher = new InternalMockRequestDispatcher(path);
Expand All @@ -280,8 +280,8 @@ public InternalMockRequestDispatcher getDispatcher() {
}
}

static class InternalMockRequestDispatcher extends MockRequestDispatcher {
private String url;
protected static class InternalMockRequestDispatcher extends MockRequestDispatcher {
private final String url;
boolean included = false;
public InternalMockRequestDispatcher(String url) {
super(url);
Expand Down

0 comments on commit 3b515b1

Please sign in to comment.