Skip to content

Commit

Permalink
[rb] remove private api annotations from Service subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Aug 13, 2019
1 parent 4e4160d commit d51a12b
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 24 deletions.
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/chrome/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
module Selenium
module WebDriver
module Chrome
#
# @api private
#

class Service < WebDriver::Service
DEFAULT_PORT = 9515
EXECUTABLE = 'chromedriver'
Expand Down
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/edge_chrome/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
module Selenium
module WebDriver
module EdgeChrome
#
# @api private
#

class Service < Selenium::WebDriver::Chrome::Service
DEFAULT_PORT = 9515
EXECUTABLE = 'msedgedriver'
Expand Down
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/edge_html/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
module Selenium
module WebDriver
module EdgeHtml
#
# @api private
#

class Service < WebDriver::Service
DEFAULT_PORT = 17556
EXECUTABLE = 'MicrosoftWebDriver'
Expand Down
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/firefox/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
module Selenium
module WebDriver
module Firefox
#
# @api private
#

class Service < WebDriver::Service
DEFAULT_PORT = 4444
EXECUTABLE = 'geckodriver'
Expand Down
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/ie/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
module Selenium
module WebDriver
module IE
#
# @api private
#

class Service < WebDriver::Service
DEFAULT_PORT = 5555
EXECUTABLE = 'IEDriverServer'
Expand Down
4 changes: 0 additions & 4 deletions rb/lib/selenium/webdriver/safari/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
module Selenium
module WebDriver
module Safari
#
# @api private
#

class Service < WebDriver::Service
DEFAULT_PORT = 7050
EXECUTABLE = 'safaridriver'
Expand Down

0 comments on commit d51a12b

Please sign in to comment.