Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/java-speech-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/com/darkprograms/speech/synthesiser/Synthesiser.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/com/darkprograms/speech/synthesiser/Synthesiser.java b/src/com/darkprograms/speech/synthesiser/Synthesiser.java
index 1117d74..ab255e7 100644
--- a/src/com/darkprograms/speech/synthesiser/Synthesiser.java
+++ b/src/com/darkprograms/speech/synthesiser/Synthesiser.java
@@ -71,7 +71,6 @@ public class Synthesiser {
* @param languageCode The language code you would like to modify languageCode to.
*/
public void setLanguage(String languageCode){
-
this.languageCode = languageCode;
}
@@ -235,7 +234,6 @@ public class Synthesiser {
buf.append((char) ch);
}
String str = buf.toString();
- System.out.println(str);
return str;
}