diff options
| author | 2014-03-18 02:02:59 +0000 | |
|---|---|---|
| committer | 2014-03-18 02:02:59 +0000 | |
| commit | bb015714274ef9fd613e15a6d4b51716504c3d0b (patch) | |
| tree | 78f368959877978e944c9461620d6061bf14775d | |
| parent | 86fcf070a58fcbc621a8d406d77dfaa918710a84 (diff) | |
| parent | 297990806dcbdc4413314847b897c9cb5452a1bc (diff) | |
am 29799080: Make InternalListener static to avoid referencing SpeechRecognizer.
* commit '297990806dcbdc4413314847b897c9cb5452a1bc':
Make InternalListener static to avoid referencing SpeechRecognizer.
| -rw-r--r-- | core/java/android/speech/SpeechRecognizer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/speech/SpeechRecognizer.java b/core/java/android/speech/SpeechRecognizer.java index 94aedbdf1d6a..91c37992eed6 100644 --- a/core/java/android/speech/SpeechRecognizer.java +++ b/core/java/android/speech/SpeechRecognizer.java @@ -409,7 +409,7 @@ public class SpeechRecognizer { * Internal wrapper of IRecognitionListener which will propagate the results to * RecognitionListener */ - private class InternalListener extends IRecognitionListener.Stub { + private static class InternalListener extends IRecognitionListener.Stub { private RecognitionListener mInternalListener; private final static int MSG_BEGINNING_OF_SPEECH = 1; |