Skip to content

Commit

Permalink
build fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed May 1, 2015
1 parent 59b7940 commit ebb3dfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/takes/http/BkTimeable.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import java.net.Socket;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.TimeUnit;
import lombok.EqualsAndHashCode;

Expand Down Expand Up @@ -56,7 +57,7 @@ public final class BkTimeable implements Back {
/**
* Threads storage.
*/
private final transient Map<Thread, Long> threads =
private final transient ConcurrentMap<Thread, Long> threads =
new ConcurrentHashMap<Thread, Long>(1);

/**
Expand Down

0 comments on commit ebb3dfb

Please sign in to comment.