Skip to content

Commit 23bdc2a

Browse files
committed
rubocop --only Style/RedundantSelf -a
1 parent 915369f commit 23bdc2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/main/autorun_engine/rule_loader.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def update_rule_json(id, data)
202202
# @param [String] JSON ARE ruleset file path
203203
def load_rule_file(json_rule_path)
204204
rule_file = File.open(json_rule_path, 'r:UTF-8', &:read)
205-
self.load_rule_json(JSON.parse(rule_file))
205+
load_rule_json(JSON.parse(rule_file))
206206
rescue => e
207207
print_error("[ARE] Failed to load ruleset from #{json_rule_path}: #{e.message}")
208208
end

0 commit comments

Comments
 (0)