Skip to content

Commit

Permalink
remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jan 14, 2015
1 parent 1f2295c commit 0ee8ce6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .rubocop.yml
Expand Up @@ -86,12 +86,6 @@ Style/MethodName:
Style/PredicateName:
Enabled: false

# Offense count: 7
# Cop supports --auto-correct.
# Configuration parameters: AllowAsExpressionSeparator.
Style/Semicolon:
Enabled: false

# Offense count: 39
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Expand Down
4 changes: 2 additions & 2 deletions library/control/src/modules/ProductControl.rb
Expand Up @@ -490,8 +490,8 @@ def FindMatchingWorkflow(stage, mode)
Check(Ops.get_string(wf, "stage", ""), stage) &&
Check(Ops.get_string(wf, "mode", ""), mode) &&
(
wf_ref = arg_ref(wf);
CheckAdditionalParams(wf_ref);
wf_ref = arg_ref(wf)
CheckAdditionalParams(wf_ref)
)
end

Expand Down
6 changes: 3 additions & 3 deletions library/general/src/modules/AsciiFile.rb
Expand Up @@ -377,9 +377,9 @@ def RewriteFile(file, fpath)
Ops.add(
out,
(
file_ref = arg_ref(file.value);
assert_line_valid_result = AssertLineValid(file_ref, num);
file.value = file_ref.value;
file_ref = arg_ref(file.value)
assert_line_valid_result = AssertLineValid(file_ref, num)
file.value = file_ref.value
assert_line_valid_result
)
),
Expand Down
2 changes: 1 addition & 1 deletion library/wizard/src/modules/Wizard.rb
Expand Up @@ -62,7 +62,7 @@ def main
# Handling of relnotes button when creating a wizard over existing one
# Cannot be handled by libyui for NCurses
@relnotes_button_label = ""
@relnotes_button_id = "";
@relnotes_button_id = ""
end

def haveFancyUI
Expand Down

0 comments on commit 0ee8ce6

Please sign in to comment.