Skip to content

Commit

Permalink
Rubocop fix: Lint/UnusedMethodArgument
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Apr 20, 2017
1 parent 6087b05 commit 0f87350
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/include/s390/dasd/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# $Id$
module Yast
module S390DasdHelpsInclude
def initialize_s390_dasd_helps(include_target)
def initialize_s390_dasd_helps(_include_target)
textdomain "s390"

# All helps are here
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/dump/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
module Yast
module S390DumpUiInclude
def initialize_s390_dump_ui(include_target)
def initialize_s390_dump_ui(_include_target)
Yast.import "UI"

textdomain "s390"
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/iucvterminal-server/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
module Yast
module S390IucvterminalServerHelpsInclude
def initialize_s390_iucvterminal_server_helps(include_target)
def initialize_s390_iucvterminal_server_helps(_include_target)
textdomain "s390"

# All helps are here
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/iucvterminal/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
module Yast
module S390IucvterminalUiInclude
def initialize_s390_iucvterminal_ui(include_target)
def initialize_s390_iucvterminal_ui(_include_target)
Yast.import "UI"

textdomain "s390"
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/onpanic/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
module Yast
module S390OnpanicUiInclude
def initialize_s390_onpanic_ui(include_target)
def initialize_s390_onpanic_ui(_include_target)
Yast.import "UI"

textdomain "s390"
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/xpram/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# $Id$
module Yast
module S390XpramUiInclude
def initialize_s390_xpram_ui(include_target)
def initialize_s390_xpram_ui(_include_target)
Yast.import "UI"

textdomain "xpram"
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/zfcp/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# $Id$
module Yast
module S390ZfcpHelpsInclude
def initialize_s390_zfcp_helps(include_target)
def initialize_s390_zfcp_helps(_include_target)
textdomain "s390"

# All helps are here
Expand Down

0 comments on commit 0f87350

Please sign in to comment.