From cb91bea6e73f6e2770f7deb8a08ff163332f7b66 Mon Sep 17 00:00:00 2001 From: Evan Shaw Date: Wed, 7 Jan 2015 08:06:44 +1300 Subject: [PATCH] Remove semi-colons from delta_blue.wren --- benchmark/delta_blue.wren | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmark/delta_blue.wren b/benchmark/delta_blue.wren index ccfec1c3..f385fe9b 100644 --- a/benchmark/delta_blue.wren +++ b/benchmark/delta_blue.wren @@ -142,7 +142,7 @@ class UnaryConstraint is Constraint { // Adds this constraint to the constraint graph. addToGraph { _myOutput.addConstraint(this) - _satisfied = false; + _satisfied = false } // Decides if this constraint can be satisfied and records that decision. @@ -356,10 +356,10 @@ class ScaleConstraint is BinaryConstraint { // Enforce this constraint. Assume that it is satisfied. execute { if (direction == FORWARD) { - v2.value = v1.value * _scale.value + _offset.value; + v2.value = v1.value * _scale.value + _offset.value } else { // TODO: Is this the same semantics as ~/? - v1.value = ((v2.value - _offset.value) / _scale.value).floor; + v1.value = ((v2.value - _offset.value) / _scale.value).floor } }