Skip to content

Commit

Permalink
fix: format warnings at head
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-qlogic committed Mar 9, 2020
1 parent b9c222c commit 24aa6ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
10 changes: 0 additions & 10 deletions checkstyle.xml
Expand Up @@ -52,16 +52,6 @@ page at http://checkstyle.sourceforge.net/config.html -->
<property name="severity" value="error"/>
</module>

<module name="ImportOrder">
<!-- Checks for out of order import statements. -->

<property name="severity" value="warning"/>
<property name="groups" value="com.google,android,junit,net,org,java,javax"/>
<!-- This ensures that static imports go first. -->
<property name="option" value="top"/>
<property name="tokens" value="STATIC_IMPORT, IMPORT"/>
</module>

<!--
JAVADOC CHECKS
Expand Down
Expand Up @@ -91,5 +91,7 @@ public ParsedAppId parseFullAppId(String fullAppId) {
}

@Override
public String getDefaultGcsBucketName() { return null; }
public String getDefaultGcsBucketName() {
return null;
}
}
Expand Up @@ -41,7 +41,7 @@
*/
@Beta
public class MockTokenServerTransport extends MockHttpTransport {
/** Old URL of Google's token server (for backwards compatibility) */
/** Old URL of Google's token server (for backwards compatibility). */
private static final String LEGACY_TOKEN_SERVER_URL =
"https://accounts.google.com/o/oauth2/token";

Expand Down

0 comments on commit 24aa6ce

Please sign in to comment.