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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.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: content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java b/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java
index c2c67e875489a187f523c59878c0a59fb1071c5e..0d6d2ddaad9f8f38ee0bb678efead4d5a6d255d1 100644
--- a/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java
+++ b/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java
@@ -153,8 +153,8 @@ public class LocationProviderFactory {
mLocationManager.requestLocationUpdates(0, 0, criteria, this,
ThreadUtils.getUiThreadLooper());
} catch (SecurityException e) {
- Log.e(TAG, "Caught security exception registering for location updates from " +
- "system. This should only happen in DumpRenderTree.");
+ Log.e(TAG, "Caught security exception registering for location updates from "
+ + "system. This should only happen in DumpRenderTree.");
} catch (IllegalArgumentException e) {
Log.e(TAG, "Caught IllegalArgumentException registering for location updates.");
}

Powered by Google App Engine
This is Rietveld 408576698