File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
java/server/src/org/openqa/selenium/remote/server Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 41
41
import javax .servlet .http .HttpServletRequest ;
42
42
import javax .servlet .http .HttpServletResponse ;
43
43
44
- public class Passthrough implements SessionCodec {
44
+ class Passthrough implements SessionCodec {
45
45
46
46
private final static Logger LOG = Logger .getLogger (Passthrough .class .getName ());
47
47
Original file line number Diff line number Diff line change 43
43
import javax .servlet .http .HttpServletRequest ;
44
44
import javax .servlet .http .HttpServletResponse ;
45
45
46
- public class ProtocolConverter implements SessionCodec {
46
+ class ProtocolConverter implements SessionCodec {
47
47
48
48
private final static ImmutableSet <String > IGNORED_REQ_HEADERS = ImmutableSet .<String >builder ()
49
49
.add ("connection" )
Original file line number Diff line number Diff line change 23
23
import java .nio .file .Path ;
24
24
import java .util .Set ;
25
25
26
- public interface SessionFactory {
26
+ interface SessionFactory {
27
27
ActiveSession apply (Path capabilitiesBlob , Set <Dialect > downstreamDialects );
28
28
}
Original file line number Diff line number Diff line change 21
21
import java .io .Reader ;
22
22
import java .io .Writer ;
23
23
24
- public class TeeReader extends Reader {
24
+ class TeeReader extends Reader {
25
25
26
26
private final Reader source ;
27
27
private final Writer [] sinks ;
You can’t perform that action at this time.
0 commit comments