Reformat code, make getter of @NonNull members also @NonNull

This commit is contained in:
Andreas Shimokawa 2016-03-22 21:55:15 +01:00
parent b0ec74696d
commit df3a06ac9b
1 changed files with 6 additions and 2 deletions

View File

@ -31,8 +31,10 @@ public class MiBandFWHelper {
* given firmware. You must call AbstractMiFirmwareInfo#checkValid() before * given firmware. You must call AbstractMiFirmwareInfo#checkValid() before
* attempting to flash it. * attempting to flash it.
*/ */
private final @NonNull AbstractMiFirmwareInfo firmwareInfo; @NonNull
private final @NonNull byte[] fw; private final AbstractMiFirmwareInfo firmwareInfo;
@NonNull
private final byte[] fw;
/** /**
* Provides a different notification API which is also used on Mi1A devices. * Provides a different notification API which is also used on Mi1A devices.
@ -108,6 +110,7 @@ public class MiBandFWHelper {
return formatFirmwareVersion(version); return formatFirmwareVersion(version);
} }
@NonNull
public byte[] getFw() { public byte[] getFw() {
return fw; return fw;
} }
@ -145,6 +148,7 @@ public class MiBandFWHelper {
* given firmware. You MUST call AbstractMiFirmwareInfo#checkValid() AND * given firmware. You MUST call AbstractMiFirmwareInfo#checkValid() AND
* isGenerallyCompatibleWithDevice() before attempting to flash it. * isGenerallyCompatibleWithDevice() before attempting to flash it.
*/ */
@NonNull
public AbstractMiFirmwareInfo getFirmwareInfo() { public AbstractMiFirmwareInfo getFirmwareInfo() {
return firmwareInfo; return firmwareInfo;
} }