Add 'default:' case to fix findbugs warning.

NOTRY=true

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244531 0039d316-1c4b-4281-b951-d872f2087c98
parent a162ecb4
......@@ -412,6 +412,10 @@ public class Chromoting extends Activity implements JniInterface.ConnectionListe
dismissProgress = true;
finishActivity(0);
break;
default:
// Unreachable, but required by Google Java style and findbugs.
assert false : "Unreached";
}
if (dismissProgress && mProgressIndicator != null) {
......
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