Skip to content

Commit

Permalink
Merge pull request #324 from sebokmarton/master
Browse files Browse the repository at this point in the history
Enable extension of ClientHandler and ServerRunnable
  • Loading branch information
LordFokas authored Jun 12, 2016
2 parents 9467101 + a47eefc commit d595821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/fi/iki/elonen/NanoHTTPD.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public class ClientHandler implements Runnable {

private final Socket acceptSocket;

private ClientHandler(InputStream inputStream, Socket acceptSocket) {
public ClientHandler(InputStream inputStream, Socket acceptSocket) {
this.inputStream = inputStream;
this.acceptSocket = acceptSocket;
}
Expand Down Expand Up @@ -1706,7 +1706,7 @@ public class ServerRunnable implements Runnable {

private boolean hasBinded = false;

private ServerRunnable(int timeout) {
public ServerRunnable(int timeout) {
this.timeout = timeout;
}

Expand Down

0 comments on commit d595821

Please sign in to comment.