From c29c93fbec3032e9bc8847ffec44e47a0b8c03af Mon Sep 17 00:00:00 2001 From: maroni Date: Sun, 27 May 2012 19:03:40 -0300 Subject: [PATCH] =?utf8?q?Corre=C3=A7=C3=A3o=20de=20bug=20na=20chamada=20a=20?= =?utf8?q?flush=20em=20MetodoIniciaCaso?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java b/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java index 3b9d9fc..0f2597c 100644 --- a/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java +++ b/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java @@ -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() { -- 1.7.6.4