Update of /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application/gui
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv18097/src/net/charabia/jsmoothgen/application/gui
Modified Files:
Main.java MasterPanel.java
Log Message:
removed some unnecessary debug traces
Index: MasterPanel.java
===================================================================
RCS file: /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application/gui/MasterPanel.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MasterPanel.java 6 Apr 2007 16:27:10 -0000 1.3
--- MasterPanel.java 7 Apr 2007 10:47:33 -0000 1.4
***************
*** 151,155 ****
m_displayedElements.removeAllElements();
! System.out.println("Adding " + els);
if (els == null)
--- 151,155 ----
m_displayedElements.removeAllElements();
! // System.out.println("Adding " + els);
if (els == null)
***************
*** 218,222 ****
else if (els[i] instanceof String)
{
! System.out.println("TITLE: " + els[i]);
if (pgroup != null)
{
--- 218,222 ----
else if (els[i] instanceof String)
{
! // System.out.println("TITLE: " + els[i]);
if (pgroup != null)
{
***************
*** 285,289 ****
private void attachAll()
{
! System.out.println("Attaching all with " + m_modelLocation + ": " + m_model);
for (Iterator i=m_displayedElements.iterator(); i.hasNext(); )
{
--- 285,289 ----
private void attachAll()
{
! // System.out.println("Attaching all with " + m_modelLocation + ": " + m_model);
for (Iterator i=m_displayedElements.iterator(); i.hasNext(); )
{
***************
*** 344,348 ****
m_model.normalizePaths(m_modelLocation.getParentFile(), true);
JSmoothModelPersistency.save(m_modelLocation, m_model);
! System.out.println("saving model " + m_model);
// fireModelChanged();
return true;
--- 344,348 ----
m_model.normalizePaths(m_modelLocation.getParentFile(), true);
JSmoothModelPersistency.save(m_modelLocation, m_model);
! // System.out.println("saving model " + m_model);
// fireModelChanged();
return true;
***************
*** 385,389 ****
out = new File(m_model.getExecutableName());
! System.out.println("out = "+ out.getAbsolutePath());
ExeCompiler compiler = new ExeCompiler();
ExeCompiler.CompilerRunner runner = compiler.getRunnable(skelroot, skel, basedir, m_model, out);
--- 385,389 ----
out = new File(m_model.getExecutableName());
! // System.out.println("out = "+ out.getAbsolutePath());
ExeCompiler compiler = new ExeCompiler();
ExeCompiler.CompilerRunner runner = compiler.getRunnable(skelroot, skel, basedir, m_model, out);
***************
*** 406,410 ****
String[] cmd = new String[]{ f.getAbsolutePath() };
! System.out.println("RUNNING " + cmd[0] + " @ " + basedir);
CommandRunner.run(cmd, f.getParentFile());
} catch (Exception exc)
--- 406,410 ----
String[] cmd = new String[]{ f.getAbsolutePath() };
! // System.out.println("RUNNING " + cmd[0] + " @ " + basedir);
CommandRunner.run(cmd, f.getParentFile());
} catch (Exception exc)
Index: Main.java
===================================================================
RCS file: /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application/gui/Main.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Main.java 2 Apr 2007 19:41:39 -0000 1.5
--- Main.java 7 Apr 2007 10:47:33 -0000 1.6
***************
*** 245,249 ****
dia.setCompiler(compiler.getCompiler());
dia.compile(compiler);
- System.out.println("FINISH !!");
// return dia.getResult();
}
--- 245,248 ----
|