Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(578)

Unified Diff: remoting/android/java/src/org/chromium/chromoting/SessionConnector.java

Issue 744453002: Fix a bunch of Java Checkstyle issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NeedsBraces to info Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/android/java/src/org/chromium/chromoting/SessionConnector.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/SessionConnector.java b/remoting/android/java/src/org/chromium/chromoting/SessionConnector.java
index a1f8a5b65b6954ad4fdd3e1209528ce13f90aba1..4d52ef683c98f5b4fb0bc97757a6c08ae79d7095 100644
--- a/remoting/android/java/src/org/chromium/chromoting/SessionConnector.java
+++ b/remoting/android/java/src/org/chromium/chromoting/SessionConnector.java
@@ -65,8 +65,8 @@ public class SessionConnector implements JniInterface.ConnectionListener,
@Override
public void onConnectionState(JniInterface.ConnectionListener.State state,
JniInterface.ConnectionListener.Error error) {
- if (state == JniInterface.ConnectionListener.State.FAILED &&
- error == JniInterface.ConnectionListener.Error.PEER_IS_OFFLINE) {
+ if (state == JniInterface.ConnectionListener.State.FAILED
+ && error == JniInterface.ConnectionListener.Error.PEER_IS_OFFLINE) {
// The host is offline, which may mean the JID is out of date, so refresh the host list
// and try to connect again.
reloadHostListAndConnect();

Powered by Google App Engine
This is Rietveld 408576698