We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 036b87c commit 381f815Copy full SHA for 381f815
java/server/src/org/openqa/selenium/remote/server/BeginSession.java
@@ -31,8 +31,6 @@
31
import java.io.IOException;
32
import java.io.InputStreamReader;
33
import java.io.Reader;
34
-import java.nio.file.Files;
35
-import java.nio.file.Path;
36
37
class BeginSession implements CommandHandler {
38
@@ -46,9 +44,6 @@ public BeginSession(ActiveSessions allSessions) {
46
44
47
45
@Override
48
public void execute(HttpRequest req, HttpResponse resp) throws IOException {
49
- // Copy the capabilities to disk
50
- Path allCaps = Files.createTempFile("selenium", ".json");
51
-
52
String lengthString = req.getHeader("Content-Length");
53
long contentLength = Long.MAX_VALUE;
54
if (lengthString != null) {
0 commit comments