Remove AbstractChannel.getRandom()

Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
This commit is contained in:
Cruz Julian Bishop 2012-08-25 16:49:38 +10:00
parent 93c990dd7a
commit f34eb62104

View File

@ -30,10 +30,6 @@ public abstract class AbstractChannel implements Channel {
private static final Random random = new Random();
public static Random getRandom() {
return random;
}
private static Integer allocateId(Channel channel) {
Integer id = random.nextInt();
for (;;) {