Skip to content

Commit a169c17

Browse files
committed
(maint) Remove spurious space between method name & args
JRuby 9.4 will warn that this will be interpreted as a method's argument list not a destructuring. That is the desired behavior but we do not want the warning.
1 parent fd50746 commit a169c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/puppet/pops/evaluator/relationship_operator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def assert_catalog_type(o, scope)
119119
# To implement this, the general evaluator needs to be able to track each evaluation result and associate
120120
# it with a corresponding expression. This structure should then be passed to the relationship operator.
121121
#
122-
def evaluate (left_right_evaluated, relationship_expression, scope)
122+
def evaluate(left_right_evaluated, relationship_expression, scope)
123123
# assert operator (should have been validated, but this logic makes assumptions which would
124124
# screw things up royally). Better safe than sorry.
125125
unless RELATIONSHIP_OPERATORS.include?(relationship_expression.operator)

0 commit comments

Comments
 (0)