Skip to content

Commit

Permalink
Remove JRuby-specific workaround for getting HOME on Windows
Browse files Browse the repository at this point in the history
Dir.home works perfectly there
  • Loading branch information
p0deje committed Mar 6, 2019
1 parent 4f46c04 commit c208745
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rb/lib/selenium/webdriver/common/platform.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ module Platform
module_function

def home
# jruby has an issue with ENV['HOME'] on Windows
@home ||= jruby? ? ENV_JAVA['user.home'] : ENV['HOME']
@home ||= Dir.home
end

def engine
Expand Down

0 comments on commit c208745

Please sign in to comment.