From 1f3560e75ea4101f5d80262147e6860e43f1a907 Mon Sep 17 00:00:00 2001 From: Greg Kaiser Date: Mon, 11 Apr 2016 12:49:21 -0700 Subject: [PATCH] NanoApp: Make indentation consistent Four spaces is our style standard. Change-Id: I94f4493268e29b7de5d4fc0f5ef98637997b3957 --- .../android/hardware/location/NanoApp.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/core/java/android/hardware/location/NanoApp.java b/core/java/android/hardware/location/NanoApp.java index 8d50be671106c..03ac4a2afaac1 100644 --- a/core/java/android/hardware/location/NanoApp.java +++ b/core/java/android/hardware/location/NanoApp.java @@ -192,7 +192,7 @@ public class NanoApp { * @return publisher name */ public String getPublisher() { - return mPublisher; + return mPublisher; } /** @@ -201,7 +201,7 @@ public class NanoApp { * @return app name */ public String getName() { - return mName; + return mName; } /** @@ -210,7 +210,7 @@ public class NanoApp { * @return identifier for this app */ public int getAppId() { - return mAppId; + return mAppId; } /** @@ -219,7 +219,7 @@ public class NanoApp { * @return app version */ public int getAppVersion() { - return mAppVersion; + return mAppVersion; } /** @@ -228,7 +228,7 @@ public class NanoApp { * @return readable memory needed in bytes */ public int getNeededReadMemBytes() { - return mNeededReadMemBytes; + return mNeededReadMemBytes; } /** @@ -237,7 +237,7 @@ public class NanoApp { * @return writable memory needed in bytes */ public int getNeededWriteMemBytes() { - return mNeededWriteMemBytes; + return mNeededWriteMemBytes; } /** @@ -246,7 +246,7 @@ public class NanoApp { * @return executable memory needed in bytes */ public int getNeededExecMemBytes() { - return mNeededExecMemBytes; + return mNeededExecMemBytes; } /** @@ -255,7 +255,7 @@ public class NanoApp { * @return sensors needed */ public int[] getNeededSensors() { - return mNeededSensors; + return mNeededSensors; } /** @@ -264,7 +264,7 @@ public class NanoApp { * @return generated events */ public int[] getOutputEvents() { - return mOutputEvents; + return mOutputEvents; } /** @@ -273,7 +273,7 @@ public class NanoApp { * @return app binary */ public byte[] getAppBinary() { - return mAppBinary; + return mAppBinary; } private NanoApp(Parcel in) {