Commit 67ab1ce9 authored by Markus Armbruster's avatar Markus Armbruster
Browse files

qapi: Stop rejecting #optional



Commit 1d8bda12 got rid of #optional tags, and added a check to keep
them from getting added back, to make sure patches then in flight
don't add them back.  It's been six months, time to drop that check.

Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
Message-Id: <20171002141341.24616-3-armbru@redhat.com>
Reviewed-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
parent c6a1a98b
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -234,10 +234,6 @@ class QAPIDoc(object):
            raise QAPIParseError(self.parser,
                                 "'%s' not allowed in free-form documentation"
                                 % match.group(1))
        # TODO Drop this once the dust has settled
        if (isinstance(self.section, QAPIDoc.ArgSection)
                and '#optional' in line):
            raise QAPISemError(self.info, "Please drop the #optional tag")
        self.section.append(line)

    def connect_member(self, member):