Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
*/
public class ServerRunnable implements Runnable {

private NanoHTTPD httpd;
private final NanoHTTPD httpd;

private final int timeout;

private IOException bindException;
private volatile IOException bindException;

private boolean hasBinded = false;
private volatile boolean hasBinded = false;

public ServerRunnable(NanoHTTPD httpd, int timeout) {
this.httpd = httpd;
Expand Down