Skip to content

Commit

Permalink
Delete debugging println calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
juangj committed Jun 30, 2016
1 parent b824de0 commit 91b3777
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@ public WebDriver get() {
}

try {
System.out.println("try 2 arg");
return driverClass.getConstructor(Capabilities.class,
Capabilities.class)
.newInstance(desiredCapsToUse, requiredCapabilities);
} catch (NoSuchMethodException ex) {
System.out.println("try 1 arg");
return driverClass.getConstructor(Capabilities.class).newInstance(desiredCapsToUse);
}
}
Expand Down

0 comments on commit 91b3777

Please sign in to comment.