Skip to content

Commit

Permalink
Rubocop fix: Style/LeadingCommentSpace
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Apr 20, 2017
1 parent 3855c5e commit 0463d49
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ if `uname --machine` !~ /s390/
end

Yast::Tasks.configuration do |conf|
#lets ignore license check for now
# lets ignore license check for now
conf.skip_license_check << /.*/
end
2 changes: 1 addition & 1 deletion src/clients/dump.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DumpClient < Client
def main
Yast.import "UI"

#**
# **
# <h3>Creation of s390 dump devices</h3>

textdomain "s390"
Expand Down
2 changes: 1 addition & 1 deletion src/clients/onpanic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class OnpanicClient < Client
def main
Yast.import "UI"

#**
# **
# <h3>Configuration of onpanic</h3>

textdomain "s390"
Expand Down
2 changes: 1 addition & 1 deletion src/clients/xpram.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class XpramClient < Client
def main
Yast.import "UI"

#**
# **
# <h3>Configuration of xpram</h3>

textdomain "xpram"
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/dasd/dialogs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def PerformAction(action)
device
end
devices.reject! { | d | d.nil? }
DASDController.FormatDisks(devices, 8) #don't format more than 8 disks in parallel
DASDController.FormatDisks(devices, 8) # don't format more than 8 disks in parallel
unformatted_disks.each do | channel |
diag = !!DASDController.diag[channel]
DASDController.ActivateDisk(channel, diag)
Expand Down
6 changes: 3 additions & 3 deletions src/include/s390/iucvterminal-server/ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ def HandleEvent(widget)
ts_isnt_empty && Builtins.regexpmatch(@ts_selected_member, "^[^@]")
)

#disable the user configuration dialog in case of an empty table
# disable the user configuration dialog in case of an empty table
UI.ChangeWidget(Id(:f_ts_member_conf), :Enabled, ts_isnt_empty)
end

Expand Down Expand Up @@ -1466,7 +1466,7 @@ def HandleEvent(widget)

# tab handling
if widget == :t_zvmids
#SaveSettings( $[ "ID" : widget ] );
# SaveSettings( $[ "ID" : widget ] );
UI.ReplaceWidget(Id(:tab_content), ZvmIdsDialogContent())
InitMainDialog(widget)
Wizard.SetHelpText(Ops.get_string(@HELP, "zvmids", ""))
Expand Down Expand Up @@ -1616,7 +1616,7 @@ def IUCVTerminalServerDialog
IUCVTerminalServer.ic_enabled = @ic_enabled
IUCVTerminalServer.ic_home = @ic_home

#remove remaining IUCVConn users if disabled
# remove remaining IUCVConn users if disabled
if !@ic_enabled && IUCVTerminalServer.GetIcUsersList != []
IUCVTerminalServer.SyncIucvConnUsers([], "")
end
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 @@ -42,7 +42,7 @@ def initialize_s390_onpanic_ui(include_target)
@start = false
end

#Update the screen according to user input
# Update the screen according to user input
# @param return symbol
# @return [void]
def UpdateScreen(ret)
Expand Down
6 changes: 3 additions & 3 deletions src/modules/OnPanic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main
@dump_devices = nil
end

#Get a List of available Dump Devices
# Get a List of available Dump Devices
# @return [Array<String>] of disks
def AvailableDumpDevices
cmd = "mkdump --list-dump"
Expand All @@ -86,7 +86,7 @@ def AvailableDumpDevices
deep_copy(dev_names)
end

#Converts a MKDump entry to a device parameters map for dumpconf
# Converts a MKDump entry to a device parameters map for dumpconf
# @param mkdump device line
# @return [Hash] of device parameters
def ConvertMkdumpToConf(dev_line)
Expand Down Expand Up @@ -122,7 +122,7 @@ def ConvertMkdumpToConf(dev_line)
deep_copy(dev)
end

#Converts device parameters of dumpconf to an mkdump entry
# Converts device parameters of dumpconf to an mkdump entry
# @param dumpconf device map
# @return [String] of a mkdump entry
def ConvertConfToMkdump(dev)
Expand Down

0 comments on commit 0463d49

Please sign in to comment.