diff mbox

[for-2.9,39/47] qapi: Drop unused variable events

Message ID 1489385927-6735-40-git-send-email-armbru@redhat.com
State New
Headers show

Commit Message

Markus Armbruster March 13, 2017, 6:18 a.m. UTC
Missed in commit e98859a

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 scripts/qapi.py | 3 ---
 1 file changed, 3 deletions(-)

Comments

Eric Blake March 14, 2017, 9:02 p.m. UTC | #1
On 03/13/2017 01:18 AM, Markus Armbruster wrote:
> Missed in commit e98859a
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  scripts/qapi.py | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/scripts/qapi.py b/scripts/qapi.py
> index 0da426a..12b1bda 100644
> --- a/scripts/qapi.py
> +++ b/scripts/qapi.py
> @@ -49,7 +49,6 @@ name_case_whitelist = []
>  enum_types = []
>  struct_types = []
>  union_types = []
> -events = []
>  all_names = {}

Reviewed-by: Eric Blake <eblake@redhat.com>
diff mbox

Patch

diff --git a/scripts/qapi.py b/scripts/qapi.py
index 0da426a..12b1bda 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -49,7 +49,6 @@  name_case_whitelist = []
 enum_types = []
 struct_types = []
 union_types = []
-events = []
 all_names = {}
 
 #
@@ -751,14 +750,12 @@  def check_command(expr, info):
 
 
 def check_event(expr, info):
-    global events
     name = expr['event']
     boxed = expr.get('boxed', False)
 
     meta = ['struct']
     if boxed:
         meta += ['union', 'alternate']
-    events.append(name)
     check_type(info, "'data' for event '%s'" % name,
                expr.get('data'), allow_dict=not boxed, allow_optional=True,
                allow_metas=meta)