~ubuntu-branches/ubuntu/jaunty/electric/jaunty

« back to all changes in this revision

Viewing changes to com/sun/electric/database/constraint/Layout.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-01-08 02:05:08 UTC
  • mfrom: (1.1.2 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090108020508-0h3li7zt9mu5gf0i
Tags: 8.08-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
416
416
    private static void newCellInfo(Cell cell, CellBackup oldBackup) {
417
417
        int cellIndex = cell.getCellIndex();
418
418
        while (cellInfos.size() <= cellIndex) cellInfos.add(null);
419
 
        assert cellInfos.get(cellIndex) == null;
 
419
//        assert cellInfos.get(cellIndex) == null;
420
420
        cellInfos.set(cellIndex, new LayoutCell(cell, oldBackup));
421
421
    }
422
422