Skip to content

Commit

Permalink
Fix up visibility of fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed May 21, 2017
1 parent 144d70d commit d8b259b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class Passthrough implements SessionCodec {
class Passthrough implements SessionCodec {

private final static Logger LOG = Logger.getLogger(Passthrough.class.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class ProtocolConverter implements SessionCodec {
class ProtocolConverter implements SessionCodec {

private final static ImmutableSet<String> IGNORED_REQ_HEADERS = ImmutableSet.<String>builder()
.add("connection")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
import java.nio.file.Path;
import java.util.Set;

public interface SessionFactory {
interface SessionFactory {
ActiveSession apply(Path capabilitiesBlob, Set<Dialect> downstreamDialects);
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.io.Reader;
import java.io.Writer;

public class TeeReader extends Reader {
class TeeReader extends Reader {

private final Reader source;
private final Writer[] sinks;
Expand Down

0 comments on commit d8b259b

Please sign in to comment.