Correção de bug na chamada a flush em MetodoIniciaCaso
authormaroni <maroni@192.168.1.103>
Sun, 27 May 2012 22:03:40 +0000 (19:03 -0300)
committermaroni <maroni@192.168.1.103>
Sun, 27 May 2012 22:03:40 +0000 (19:03 -0300)
src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java

index 3b9d9fc..0f2597c 100644 (file)
@@ -34,20 +34,13 @@ public class UnBBayesUtil {
     }
         
     public final void abreRede(Rede redeEntity) throws Exception {
-System.out.println(redeEntity);
-if (redeEntity != null)
-    System.out.println("NOME DA REDE A ABRIR: " + redeEntity.getArquivo());
         // required to run unbbayes gui classes on server
         System.setProperty("java.awt.headless", "false"); 
-System.out.println("PONTO 1");
         rede = new ProbabilisticNetwork("rede"+redeEntity.getId());
         
-System.out.println("PONTO 2");
         XMLBIFIO.loadXML(new File(redeEntity.getArquivo()), rede);
-System.out.println("PONTO 3");
         
         compilar();
-System.out.println("PONTO 4");
     }
 
     public void compilar() {