Skip to content

Commit 456ddce

Browse files
committed
Remove nil values that are default already
There are four lights!
1 parent 04f11b0 commit 456ddce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/post/windows/manage/migrate.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def initialize(info={})
2323
register_options(
2424
[
2525
OptBool.new( 'SPAWN',[ false,'Spawn process to migrate to. If name for process not given notepad.exe is used.', true]),
26-
OptInt.new( 'PID', [false, 'PID of process to migrate to.', nil]),
27-
OptString.new( 'NAME', [false, 'Name of process to migrate to.', nil]),
26+
OptInt.new( 'PID', [false, 'PID of process to migrate to.']),
27+
OptString.new( 'NAME', [false, 'Name of process to migrate to.']),
2828
OptBool.new( 'KILL', [false, 'Kill original process for the session.', false])
2929
], self.class)
3030
end

0 commit comments

Comments
 (0)