Skip to content

Commit 93ba5ca

Browse files
nsatragnoshs96c
authored andcommitted
Fix VirtualAuthenticatorOptions enums not being public. (#7869)
1 parent 008be63 commit 93ba5ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/client/src/org/openqa/selenium/virtualauthenticator/VirtualAuthenticatorOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*/
2828
public class VirtualAuthenticatorOptions {
2929

30-
enum Protocol {
30+
public enum Protocol {
3131
CTAP2("ctap2"),
3232
U2F("ctap1/u2f");
3333

@@ -38,7 +38,7 @@ private Protocol(String id) {
3838
}
3939
}
4040

41-
enum Transport {
41+
public enum Transport {
4242
BLE("ble"),
4343
INTERNAL("internal"),
4444
NFC("nfc"),

0 commit comments

Comments
 (0)