Removed an error message from DRCcif.c; otherwise it raises an

error whenever there are no DRC-CIF rules in the techfile.  The
same error will be raised anyway when reading the techfile if
DRC-CIF rules are declared without a style being specified.
This commit is contained in:
Tim Edwards 2019-10-16 10:14:44 -04:00
parent 46f3f44849
commit 0386752abb
1 changed files with 1 additions and 4 deletions

View File

@ -504,10 +504,7 @@ drcCifCheck(arg)
if (CIFCurStyle != drcCifStyle)
{
if (drcNeedStyle == NULL) {
TxError("Error: No DRC CIF style declared!\n");
return;
}
if (drcNeedStyle == NULL) return;
CIFSaveStyle = CIFCurStyle;