Skip to content

Commit

Permalink
Allow GeckoDriverService to be extended.
Browse files Browse the repository at this point in the history
Note that this is the case for other driver services.

Signed-off-by: Luke Inman-Semerau <[email protected]>
  • Loading branch information
joshbruning authored and lukeis committed Jan 17, 2016
1 parent c9caf53 commit 38a174c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ public class GeckoDriverService extends DriverService {
* @param environment The environment for the launched server.
* @throws IOException If an I/O error occurs.
*/
private GeckoDriverService(File executable, int port, ImmutableList<String> args,
ImmutableMap<String, String> environment) throws IOException {
public GeckoDriverService(File executable, int port, ImmutableList<String> args,
ImmutableMap<String, String> environment) throws IOException {
super(executable, port, args, environment);
}

Expand Down

0 comments on commit 38a174c

Please sign in to comment.