-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[java] Use new 'getArray' method to extract driver configurations #12716
Conversation
7457789
to
5976220
Compare
09cd7d0
to
10df5be
Compare
efb2423
to
66347a8
Compare
Codecov ReportAll modified lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## trunk #12716 +/- ##
=======================================
Coverage 56.51% 56.51%
=======================================
Files 86 86
Lines 5255 5255
Branches 187 187
=======================================
Hits 2970 2970
Misses 2098 2098
Partials 187 187 ☔ View full report in Codecov by Sentry. |
9f72953
to
bc68a0d
Compare
c388f7f
to
2e1338b
Compare
@sbabcoc - If this implementation is ready to be reviewed, maybe you can help add a test to this as well and drop a message. If it's still WIP maybe you could have this PR in draft ? |
@krmahadevan This is ready for review. The existing unit tests cover these revisions. |
ed9783c
to
ca81b92
Compare
e721134
to
5155821
Compare
5155821
to
54caf4c
Compare
…leniumHQ#12716) Use new 'getArray' method; fix formatting Co-authored-by: Diego Molina <[email protected]>
Description
In this PR, I eliminate the need to deal with
Config.DELIMITER
by using the newgetArray
method.Motivation and Context
This specific implementation was the original motivation for a series of PRs to introduce an unambiguous delimiter into flat lists of associated settings. My previous PR added the
Config.getArray
method, which returns delimited lists of associated settings as a list of lists, eliminating the need for client code to perform this operation.Types of changes
Checklist