2002/css-validator/org/w3c/css/properties/css2/table Css2Style.java,1.1,1.2

Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2/table
In directory hutz:/tmp/cvs-serv18813/properties/css2/table

Modified Files:
	Css2Style.java 
Log Message:
code cleanup, removed dead code, starting reorg of azimuth (others to follow)

Index: Css2Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/table/Css2Style.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Css2Style.java	23 Aug 2005 16:33:50 -0000	1.1
+++ Css2Style.java	9 Sep 2011 12:16:45 -0000	1.2
@@ -8,7 +8,6 @@
  */
 package org.w3c.css.properties.css2.table;
 
-import org.w3c.css.parser.CssPrinterStyle;
 import org.w3c.css.properties.aural.ACssStyle;
 
 /**
@@ -178,58 +177,4 @@
     }
 
 
-    /**
-     * Print this style.
-     *
-     * @param printer The printer interface.
-     */
-    public void print(CssPrinterStyle printer) {
-	super.print(printer);
-
-	if (rowSpan != null) {
-	    rowSpan.print(printer);
-	}
-	if (rowSpanATSC != null) {
-	    rowSpanATSC.print(printer);
-	}
-	if (columnSpan != null) {
-	    columnSpan.print(printer);
-	}
-	if (columnSpanATSC != null) {
-	    columnSpanATSC.print(printer);
-	}
-	if (tableLayout != null) {
-	    tableLayout.print(printer);
-	}
-	if (tableLayoutATSC != null) {
-	    tableLayoutATSC.print(printer);
-	}
-	if (captionSide != null) {
-	    captionSide.print(printer);
-	}
-	if (borderCollapse != null) {
-	    borderCollapse.print(printer);
-	}
-	if (borderCollapseATSC != null) {
-	    borderCollapseATSC.print(printer);
-	}
-	if (borderSpacing != null) {
-	    borderSpacing.print(printer);
-	}
-	if (borderSpacingATSC != null) {
-	    borderSpacingATSC.print(printer);
-	}
-	if (emptyCells != null) {
-	    emptyCells.print(printer);
-	}
-	if (emptyCellsATSC != null) {
-	    emptyCellsATSC.print(printer);
-	}
-	if (speakHeader != null) {
-	    speakHeader.print(printer);
-	}
-	if (speakHeaderATSC != null) {
-	    speakHeaderATSC.print(printer);
-	}
-    }
 }

Received on Friday, 9 September 2011 12:16:52 UTC