summaryrefslogtreecommitdiffstats
path: root/core/java/android/speech
diff options
context:
space:
mode:
authorPrzemyslaw Szczepaniak <pszczepaniak@google.com>2013-03-06 10:04:07 +0000
committerPrzemyslaw Szczepaniak <pszczepaniak@google.com>2013-03-06 10:04:07 +0000
commit7341786b138cb52eac053108b524ea3296d40f6d (patch)
tree779f8ef7bd548ef2bcb89f947c5587b4ad341014 /core/java/android/speech
parentfcf671be890f9fb49067c5f86b182bf8b8e7b9c0 (diff)
downloadframeworks_base-7341786b138cb52eac053108b524ea3296d40f6d.zip
frameworks_base-7341786b138cb52eac053108b524ea3296d40f6d.tar.gz
frameworks_base-7341786b138cb52eac053108b524ea3296d40f6d.tar.bz2
Forgot to rename constructor to match class name.
Change-Id: I7e66c3dd26ec7f8be381b0dfd87ac686665206cd
Diffstat (limited to 'core/java/android/speech')
-rw-r--r--core/java/android/speech/tts/TextToSpeechService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/speech/tts/TextToSpeechService.java b/core/java/android/speech/tts/TextToSpeechService.java
index 6291d7c..4379418 100644
--- a/core/java/android/speech/tts/TextToSpeechService.java
+++ b/core/java/android/speech/tts/TextToSpeechService.java
@@ -660,7 +660,7 @@ public abstract class TextToSpeechService extends Service {
private class SynthesisToFileOutputStreamSpeechItem extends SynthesisSpeechItem {
private final FileOutputStream mFileOutputStream;
- public SynthesisToFileSpeechDescriptorItem(Object callerIdentity, int callerUid,
+ public SynthesisToFileOutputStreamSpeechItem(Object callerIdentity, int callerUid,
int callerPid, Bundle params, String text, FileOutputStream fileOutputStream) {
super(callerIdentity, callerUid, callerPid, params, text);
mFileOutputStream = fileOutputStream;