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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java

Issue 2548013002: Remove redundant field initialization in Java code. (Closed)
Patch Set: rebase Created 4 years 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: android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java
index c01c4f73c3fafa8c16b0943ab3b168d828d82a6a..949816e06926bcd598cc0cf52b405ce09f055e9a 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedHttpErrorTest.java
@@ -43,9 +43,9 @@ public class ClientOnReceivedHttpErrorTest extends AwTestBase {
}
private static class VerifyOnReceivedHttpErrorCallClient extends TestAwContentsClient {
- private boolean mBypass = false;
- private boolean mIsOnPageFinishedCalled = false;
- private boolean mIsOnReceivedHttpErrorCalled = false;
+ private boolean mBypass;
+ private boolean mIsOnPageFinishedCalled;
+ private boolean mIsOnReceivedHttpErrorCalled;
void enableBypass() {
mBypass = true;

Powered by Google App Engine
This is Rietveld 408576698