Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
sdiawara committed Mar 26, 2012
1 parent ba164f1 commit 02fd84b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,8 @@ public void visit(Block block) throws VoiceXTTException {
public void visit(Field field) throws VoiceXTTException {
this.playPrompt();
String input = userInput.readData();
System.out.println("wait for " + input);
while (input == null ) {
input = userInput.readData();
System.out.println("okok");
Thread.yield();
}

Expand Down
2 changes: 0 additions & 2 deletions voicextt/src/main/java/com/sdiawara/voicextt/Interpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ public class Interpreter {
private Vxml vxml;
private String currentFileName;
private Exception exceptionTothrow;
private boolean isStartedTalk;

public Interpreter(String startFileName) throws ParserConfigurationException, IOException, SAXException {
this.currentFileName = startFileName;
this.interpreterContext = new InterpreterContext(startFileName); // session
this.isStartedTalk = false;

this.vxml = new Vxml(interpreterContext.getDocumentAcces().get(this.currentFileName, null)
.getDocumentElement());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package com.sdiawara.voicextt;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

public class SystemOutput {
Expand Down

0 comments on commit 02fd84b

Please sign in to comment.