style: Remove now-unused empty Variables struct.

This commit is contained in:
Cameron McCormack 2017-07-28 11:57:45 +08:00
parent b1d9746041
commit 45df66f9ff
4 changed files with 2 additions and 40 deletions

View file

@ -24,10 +24,7 @@ with open(INPUT_FILE, "r") as bindings, open(OUTPUT_FILE, "w+") as tests:
for line in bindings:
match = pattern.search(line)
# GetStyleVariables is a Servo_* function, but temporarily defined on
# the gecko side
if match and match.group(1) != "GetStyleVariables":
if match:
tests.write(TEMPLATE.format(name=match.group(1)))
tests.write("}\n")