Index: webrtc/examples/androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java |
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java |
index 95cda346cdfd003e3d14fa89e3cdcd26b57a1a0d..ee7f8c0416bb9d19932de331a3d67c136c4170a7 100644 |
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java |
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java |
@@ -17,9 +17,7 @@ import android.util.Log; |
* AppRTCUtils provides helper functions for managing thread safety. |
*/ |
public final class AppRTCUtils { |
- |
- private AppRTCUtils() { |
- } |
+ private AppRTCUtils() {} |
/** Helper method which throws an exception when an assertion has failed. */ |
public static void assertIsTrue(boolean condition) { |
@@ -30,20 +28,20 @@ public final class AppRTCUtils { |
/** Helper method for building a string of thread information.*/ |
public static String getThreadInfo() { |
- return "@[name=" + Thread.currentThread().getName() |
- + ", id=" + Thread.currentThread().getId() + "]"; |
+ return "@[name=" + Thread.currentThread().getName() + ", id=" + Thread.currentThread().getId() |
+ + "]"; |
} |
/** Information about the current build, taken from system properties. */ |
public static void logDeviceInfo(String tag) { |
Log.d(tag, "Android SDK: " + Build.VERSION.SDK_INT + ", " |
- + "Release: " + Build.VERSION.RELEASE + ", " |
- + "Brand: " + Build.BRAND + ", " |
- + "Device: " + Build.DEVICE + ", " |
- + "Id: " + Build.ID + ", " |
- + "Hardware: " + Build.HARDWARE + ", " |
- + "Manufacturer: " + Build.MANUFACTURER + ", " |
- + "Model: " + Build.MODEL + ", " |
- + "Product: " + Build.PRODUCT); |
+ + "Release: " + Build.VERSION.RELEASE + ", " |
+ + "Brand: " + Build.BRAND + ", " |
+ + "Device: " + Build.DEVICE + ", " |
+ + "Id: " + Build.ID + ", " |
+ + "Hardware: " + Build.HARDWARE + ", " |
+ + "Manufacturer: " + Build.MANUFACTURER + ", " |
+ + "Model: " + Build.MODEL + ", " |
+ + "Product: " + Build.PRODUCT); |
} |
} |