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

Unified Diff: net/android/javatests/src/org/chromium/net/NetErrorsTest.java

Issue 112163002: Fixing Java style errors in net/android/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update known findbugs Created 7 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: net/android/javatests/src/org/chromium/net/NetErrorsTest.java
diff --git a/net/android/javatests/src/org/chromium/net/NetErrorsTest.java b/net/android/javatests/src/org/chromium/net/NetErrorsTest.java
index 57885b2efe099aae7573c6318eff7d4958243f3c..89b284a562176ead6258fb2758bd6fb6d54d30aa 100644
--- a/net/android/javatests/src/org/chromium/net/NetErrorsTest.java
+++ b/net/android/javatests/src/org/chromium/net/NetErrorsTest.java
@@ -1,4 +1,4 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -15,8 +15,8 @@ import org.chromium.base.test.util.Feature;
public class NetErrorsTest extends InstrumentationTestCase {
// These are manually copied and should be kept in sync with net_error_list.h.
- private static int IO_PENDING_ERROR = -1;
- private static int FAILED_ERROR = -2;
+ private static final int IO_PENDING_ERROR = -1;
+ private static final int FAILED_ERROR = -2;
/**
* Test whether we can include NetError.java and call to static integers defined in the file.

Powered by Google App Engine
This is Rietveld 408576698