diff options
author | Ian Rogers <irogers@google.com> | 2016-05-10 09:46:09 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2016-05-10 09:46:09 -0700 |
commit | 81c18e6f9985a3996df5e0f2ae3a38d78263103e (patch) | |
tree | 8ae86093cae5dd907c8b396a3a5ffb0d1d84588f /tests/VoiceEnrollment/src | |
parent | 57091f7a8bb31520a8edc0280b5f556c23d169a0 (diff) |
Remove @Nullable from primitive/void types.
Erroneous use of @Nullable caught by error prone.
Bug: 27723540
Change-Id: Ida76b2fd221142980da5c018e57c96cc6920ebc0
Diffstat (limited to 'tests/VoiceEnrollment/src')
-rw-r--r-- | tests/VoiceEnrollment/src/com/android/test/voiceenrollment/EnrollmentUtil.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/EnrollmentUtil.java b/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/EnrollmentUtil.java index 9e544a520d55..7927ac4cb895 100644 --- a/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/EnrollmentUtil.java +++ b/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/EnrollmentUtil.java @@ -139,7 +139,6 @@ public class EnrollmentUtil { * @param keyphraseId The keyphrase ID to look-up the sound model for. * @return {@code true} if the call succeeds, {@code false} otherwise. */ - @Nullable public boolean deleteSoundModel(int keyphraseId, String bcp47Locale) { if (keyphraseId <= 0) { Log.e(TAG, "Keyphrase must have a valid ID"); |