Skip to content

Commit

Permalink
Fixed Style/ParenthesesAroundCondition
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Jun 9, 2016
1 parent a56564a commit dff5c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/system/src/modules/Kernel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def SaveModulesToLoad

@modules_to_load.each do |file, modules|
# The content hasn't changed
next if (modules.sort == @modules_to_load_old[file].sort)
next if modules.sort == @modules_to_load_old[file].sort

if !register_modules_agent(file)
Builtins.y2error("Cannot register new SCR agent for #{file_path} file")
Expand Down

0 comments on commit dff5c5f

Please sign in to comment.