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:
authorSkylion007 <dragonsrcool.aaron@gmail.com>2013-08-25 22:23:26 +0400
committerSkylion007 <dragonsrcool.aaron@gmail.com>2013-08-25 22:23:26 +0400
commite2086ba5539d535d0fa10252ab41d39f63cc3191 (patch)
tree2a59ac819a413f1cc13957337d78226ea095636a
parent2cbf100fc2200a8ae0f10eec6172c0e55240c0fa (diff)
Removed System.out.println() statement left over from testing + code cleanup
-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;
}