Commit cd44405f authored by aurimas's avatar aurimas Committed by Commit bot

Fix Java indentation issues.

Fix indentation issues to allow enabling Checkstyle indentation rule.

BUG=318404

Review URL: https://codereview.chromium.org/662603004

Cr-Commit-Position: refs/heads/master@{#300162}
parent 115ee92a
......@@ -92,6 +92,7 @@ public final class SessionControlMessages {
this.rawRequestType = rawRequestType;
}
@Override
public void write(JsonWriter writer) throws IOException {
super.write(writer);
writer.name("rawRequestType");
......
......@@ -109,9 +109,7 @@ public class GoogleCloudMessagingV2 {
private void internalRegister(Messenger messenger, String subtype, String... senderIds) {
Intent intent = new Intent(ACTION_C2DM_REGISTER);
intent.setPackage(GOOGLE_PLAY_SERVICES_PACKAGE);
if (subtype != null) {
intent.putExtra("subtype", subtype);
}
if (subtype != null) intent.putExtra("subtype", subtype);
intent.putExtra(EXTRA_MESSENGER, messenger);
setPackageNameExtra(intent);
intent.putExtra(EXTRA_SENDER, getFlatSenderIds(senderIds));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment