Forgot to rename constructor to match class name.

Change-Id: I7e66c3dd26ec7f8be381b0dfd87ac686665206cd
This commit is contained in:
Przemyslaw Szczepaniak
2013-03-06 10:04:07 +00:00
parent fcf671be89
commit 7341786b13

View File

@@ -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;