void commit() {
   if (attList == null || !attList.hasOption("autowidth")) {
     double width = 100.0 / count;
     ColumnContext col = rootColumn;
     for (int i = 0; i < count; i++) {
       col.width = width;
       col = col.next;
     }
   }
 }