ovsdb: Remove "comment" support from OVSDB schemas.
[sliver-openvswitch.git] / ovsdb / ovsdb-idlc.in
index e99917a..6a0303d 100755 (executable)
@@ -231,10 +231,7 @@ static struct %(s)s *
     for tableName, table in sorted(schema.tables.iteritems()):
         structName = "%s%s" % (prefix, tableName.lower())
         print "\f"
-        if table.comment != None:
-            print "/* %s table (%s). */" % (tableName, table.comment)
-        else:
-            print "/* %s table. */" % (tableName)
+        print "/* %s table. */" % (tableName)
 
         # Parse functions.
         for columnName, column in sorted(table.columns.iteritems()):