aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2014-03-11 12:15:54 +0100
committerMs2ger <ms2ger@gmail.com>2014-03-11 12:15:54 +0100
commitf7a847c5818a04a8ef1e1d385afa2fedd891ee4a (patch)
tree535850125fe9ab70db3ead3065252a639abb27c6 /src/components/script/dom/bindings/codegen
parentd1f5b0971d10e0e3725045fb73d4649329bff753 (diff)
downloadservo-f7a847c5818a04a8ef1e1d385afa2fedd891ee4a.tar.gz
servo-f7a847c5818a04a8ef1e1d385afa2fedd891ee4a.zip
Stop pointlessly indenting GetProtoObject.
Diffstat (limited to 'src/components/script/dom/bindings/codegen')
-rw-r--r--src/components/script/dom/bindings/codegen/CodegenRust.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/bindings/codegen/CodegenRust.py b/src/components/script/dom/bindings/codegen/CodegenRust.py
index 895ff77c774..9701023b12d 100644
--- a/src/components/script/dom/bindings/codegen/CodegenRust.py
+++ b/src/components/script/dom/bindings/codegen/CodegenRust.py
@@ -4627,7 +4627,7 @@ class CGDescriptor(CGThing):
cgThings.append(CGWrapMethod(descriptor))
- cgThings = CGList((CGIndenter(t, declareOnly=True) for t in cgThings), "\n")
+ cgThings = CGList(cgThings, "\n")
cgThings = CGWrapper(cgThings, pre='\n', post='\n')
#self.cgRoot = CGWrapper(CGNamespace(toBindingNamespace(descriptor.name),
# cgThings),