Skip to content

Commit 5ce5555

Browse files
committed
[rb] fix rubocop spacing issues
1 parent b7fb9f5 commit 5ce5555

64 files changed

Lines changed: 0 additions & 97 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

rb/lib/selenium/webdriver/atoms.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
module Selenium
2121
module WebDriver
2222
module Atoms
23-
2423
private
2524

2625
def read_atom(function)
@@ -32,7 +31,6 @@ def execute_atom(function_name, *arguments)
3231
atom: read_atom(function_name))
3332
execute_script(script, *arguments)
3433
end
35-
3634
end # Atoms
3735
end # WebDriver
3836
end # Selenium

rb/lib/selenium/webdriver/bidi.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def send_cmd(method, **params)
5151
def error_message(message)
5252
"#{message['error']}: #{message['message']}\n#{message['stacktrace']}"
5353
end
54-
5554
end # BiDi
5655
end # WebDriver
5756
end # Selenium

rb/lib/selenium/webdriver/bidi/browsing_context.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def close
8181
def create(type, reference_context)
8282
@bidi.send_cmd("browsingContext.create", type: type.to_s, referenceContext: reference_context)
8383
end
84-
8584
end # BrowsingContext
8685
end # BiDi
8786
end # WebDriver

rb/lib/selenium/webdriver/bidi/browsing_context_info.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def initialize(id:, url:, children:, parent_context:)
2929
@children = children
3030
@parent_browsing_context = parent_context
3131
end
32-
3332
end # BrowsingContextInfo
3433
end # BiDi
3534
end # WebDriver

rb/lib/selenium/webdriver/bidi/log_inspector.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ def javascript_log_events(params)
133133
listener.call(event)
134134
end
135135
end
136-
137136
end # LogInspector
138137
end # Bidi
139138
end # WebDriver

rb/lib/selenium/webdriver/bidi/navigate_result.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def initialize(url:, navigation_id:)
2727
@url = url
2828
@navigation_id = navigation_id
2929
end
30-
3130
end # NavigateResult
3231
end # BiDi
3332
end # WebDriver

rb/lib/selenium/webdriver/bidi/session.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def unsubscribe(events, browsing_contexts = nil)
4545

4646
@bidi.send_cmd("session.unsubscribe", events: events_list, contexts: browsing_contexts_list)
4747
end
48-
4948
end # Session
5049
end # BiDi
5150
end # WebDriver

rb/lib/selenium/webdriver/chrome/driver.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
module Selenium
2323
module WebDriver
2424
module Chrome
25-
2625
#
2726
# Driver implementation for Chrome.
2827
# @api private

rb/lib/selenium/webdriver/chrome/features.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ module Selenium
2323
module WebDriver
2424
module Chrome
2525
module Features
26-
2726
include WebDriver::Chromium::Features
2827

2928
CHROME_COMMANDS = {

rb/lib/selenium/webdriver/chromium.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ module Chromium
2727
autoload :Profile, 'selenium/webdriver/chromium/profile'
2828
autoload :Options, 'selenium/webdriver/chromium/options'
2929
autoload :Service, 'selenium/webdriver/chromium/service'
30-
3130
end # Chromium
3231
end # WebDriver
3332
end # Selenium

0 commit comments

Comments
 (0)