diff options
| author | 2016-04-11 12:49:21 -0700 | |
|---|---|---|
| committer | 2016-04-11 12:49:21 -0700 | |
| commit | 1f3560e75ea4101f5d80262147e6860e43f1a907 (patch) | |
| tree | ec868b0cce26d2a20639e78f1a6afb41c0afeb1d | |
| parent | cb83bd04b7dac57be7f382be7343bfe9f1a598ab (diff) | |
NanoApp: Make indentation consistent
Four spaces is our style standard.
Change-Id: I94f4493268e29b7de5d4fc0f5ef98637997b3957
| -rw-r--r-- | core/java/android/hardware/location/NanoApp.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/java/android/hardware/location/NanoApp.java b/core/java/android/hardware/location/NanoApp.java index 8d50be671106..03ac4a2afaac 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) { |