Removed more debug logging.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@189 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-07-17 05:23:49 +00:00
parent 07bbe0dd4d
commit f572956f73
3 changed files with 3 additions and 12 deletions
@@ -1,5 +1,5 @@
// //
// $Id: CascadingChainVisualizer.java,v 1.4 2001/07/17 05:16:16 mdb Exp $ // $Id: CascadingChainVisualizer.java,v 1.5 2001/07/17 05:23:49 mdb Exp $
package com.samskivert.viztool.viz; package com.samskivert.viztool.viz;
@@ -69,9 +69,6 @@ public class CascadingChainVisualizer
double x = bounds.getX(); double x = bounds.getX();
double y = bounds.getY(); double y = bounds.getY();
// System.err.println("Rendering " + chain.getName() +
// " at +" + x + "+" + y + ".");
// create a text layout based on the current rendering conditions // create a text layout based on the current rendering conditions
Font font = chain.getRoot().isInterface() ? _ifaceFont : _classFont; Font font = chain.getRoot().isInterface() ? _ifaceFont : _classFont;
TextLayout layout = new TextLayout(chain.getName(), font, TextLayout layout = new TextLayout(chain.getName(), font,
@@ -1,5 +1,5 @@
// //
// $Id: ChainGroup.java,v 1.3 2001/07/17 05:16:16 mdb Exp $ // $Id: ChainGroup.java,v 1.4 2001/07/17 05:23:49 mdb Exp $
package com.samskivert.viztool.viz; package com.samskivert.viztool.viz;
@@ -70,9 +70,6 @@ public class ChainGroup
_size = new Rectangle2D.Double(); _size = new Rectangle2D.Double();
_size.setRect(0, 0, width + 2*BORDER, height + 2*BORDER); _size.setRect(0, 0, width + 2*BORDER, height + 2*BORDER);
System.out.println("L(" + _pkg + ") " + _size.getWidth() + "x" +
_size.getHeight() + "+" + _size.getX() + "+" + _size.getY() + ".");
return _size; return _size;
} }
@@ -1,5 +1,5 @@
// //
// $Id: HierarchyVisualizer.java,v 1.4 2001/07/17 01:54:19 mdb Exp $ // $Id: HierarchyVisualizer.java,v 1.5 2001/07/17 05:23:49 mdb Exp $
package com.samskivert.viztool.viz; package com.samskivert.viztool.viz;
@@ -114,9 +114,6 @@ public class HierarchyVisualizer implements Printable
double starty = x; double starty = x;
int pageno = 0; int pageno = 0;
System.out.println("Laying out " + width + "x" + height +
"+" + x + "+" + y + ".");
// lay out our groups // lay out our groups
for (int i = 0; i < _groups.length; i++) { for (int i = 0; i < _groups.length; i++) {
// lay out the group in question // lay out the group in question