minor comment about never reached code

This commit is contained in:
Carlos Ruiz 2009-01-16 21:53:53 +00:00
parent b5c52e42d5
commit 4659b0d769
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ public final class DisplayType
else
return "NVARCHAR2(" + fieldLength + ")";
}
if (displayType == DisplayType.Color)
if (displayType == DisplayType.Color) // this condition is never reached - filtered above in isID
{
if (columnName.endsWith("_ID"))
return "NUMBER(10)";