File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
src/org/openqa/selenium/server
test/org/openqa/selenium/remote/server Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 30
30
*/
31
31
public class RemoteControlConfiguration {
32
32
33
- public static final String KEY = RemoteControlConfiguration .class .getName () + ".config" ;
34
33
public static final int DEFAULT_PORT = 4444 ;
35
34
private static final int USE_SAME_PORT = -1 ;
36
35
public static final int MINUTES = 60 ;
Original file line number Diff line number Diff line change 42
42
import org .openqa .selenium .remote .server .testing .FakeHttpServletResponse ;
43
43
import org .openqa .selenium .remote .server .testing .TestSessions ;
44
44
import org .openqa .selenium .remote .server .testing .UrlInfo ;
45
- import org .openqa .selenium .server .RemoteControlConfiguration ;
46
45
import org .seleniumhq .jetty9 .server .handler .ContextHandler ;
47
46
48
47
import java .io .IOException ;
@@ -82,8 +81,6 @@ public ServletContext getServletContext() {
82
81
final ContextHandler .Context servletContext = new ContextHandler ().getServletContext ();
83
82
servletContext .setInitParameter ("webdriver.server.session.timeout" , "18" );
84
83
servletContext .setInitParameter ("webdriver.server.browser.timeout" , "2" );
85
- servletContext .setAttribute (RemoteControlConfiguration .KEY ,
86
- new RemoteControlConfiguration ());
87
84
return servletContext ;
88
85
}
89
86
You can’t perform that action at this time.
0 commit comments