Fix Checkstyle warnings related to class and member modifier order

Change the order of class and member modifiers to follow the order
defined in the Java Language Specification and the Google Java
Style guide [1].

[1] https://google-styleguide.googlecode.com/svn/trunk/javaguide.html#s4.8.7-modifiers

Change-Id: Ic7f85cb4d15f49159095aa37d3c41dbffd69c805
This commit is contained in:
David Pursehouse
2015-04-14 11:26:17 +09:00
parent c7463ba0a4
commit 994159eab7
16 changed files with 27 additions and 21 deletions

View File

@@ -518,10 +518,12 @@ public class PluginGuiceEnvironment {
bindings.remove(Key.get(Injector.class));
bindings.remove(Key.get(java.util.logging.Logger.class));
final @Nullable Binding<HttpServletRequest> requestBinding =
@Nullable
final Binding<HttpServletRequest> requestBinding =
src.getExistingBinding(Key.get(HttpServletRequest.class));
final @Nullable Binding<HttpServletResponse> responseBinding =
@Nullable
final Binding<HttpServletResponse> responseBinding =
src.getExistingBinding(Key.get(HttpServletResponse.class));
return new AbstractModule() {