Skip to content

Commit 91b3777

Browse files
committed
Delete debugging println calls.
1 parent b824de0 commit 91b3777

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

java/client/test/org/openqa/selenium/testing/drivers/ReflectionBackedDriverSupplier.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,10 @@ public WebDriver get() {
7575
}
7676

7777
try {
78-
System.out.println("try 2 arg");
7978
return driverClass.getConstructor(Capabilities.class,
8079
Capabilities.class)
8180
.newInstance(desiredCapsToUse, requiredCapabilities);
8281
} catch (NoSuchMethodException ex) {
83-
System.out.println("try 1 arg");
8482
return driverClass.getConstructor(Capabilities.class).newInstance(desiredCapsToUse);
8583
}
8684
}

0 commit comments

Comments
 (0)