Merge pull request #29 from winstonli/minor_fixes

#24 Part 1/6: minor fixes
This commit is contained in:
Michael Walker 2018-01-15 11:16:32 +00:00 committed by GitHub
commit 7e047042c0
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import java.util.List;
public class SizeLimitExceededException extends GitUserException {
private static String path = null;
private final String path;
public SizeLimitExceededException(String path) {
super();

View file

@ -71,7 +71,7 @@ public class Oauth2Filter implements Filter {
);
return;
}
Log.info("[{}] Auth not needed");
Log.info("[{}] Auth not needed", project);
filterChain.doFilter(servletRequest, servletResponse);
}