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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedError2Test.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/ClientOnReceivedError2Test.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedError2Test.java b/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedError2Test.java
index 8f43bbd73a82a871cacde45fffc4d718bc02d18e..7e93712c190e7355d280308e626b4ac0dadc04c2 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedError2Test.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/ClientOnReceivedError2Test.java
@@ -57,9 +57,9 @@ public class ClientOnReceivedError2Test extends AwTestBase {
}
private static class VerifyOnReceivedError2CallClient extends TestAwContentsClient {
- private boolean mBypass = false;
- private boolean mIsOnPageFinishedCalled = false;
- private boolean mIsOnReceivedError2Called = false;
+ private boolean mBypass;
+ private boolean mIsOnPageFinishedCalled;
+ private boolean mIsOnReceivedError2Called;
void enableBypass() {
mBypass = true;

Powered by Google App Engine
This is Rietveld 408576698