Issue 191: NetworkInterfaces not allowed on gae

This commit is contained in:
Adrian Cole 2010-07-25 18:59:17 -07:00
parent b40b6a45bc
commit b1b0e062e4
1 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@ import static com.google.common.collect.Lists.partition;
import static com.google.common.primitives.Bytes.asList;
import static com.google.common.primitives.Bytes.toArray;
import java.net.NetworkInterface;
import java.util.List;
import javax.inject.Inject;
@ -46,7 +45,7 @@ public class ByteArrayToMacAddress implements Function<byte[], String> {
private final EncryptionService encryptionService;
@Inject
ByteArrayToMacAddress(EncryptionService encryptionService, NetworkInterface networkInterface) {
ByteArrayToMacAddress(EncryptionService encryptionService) {
this.encryptionService = checkNotNull(encryptionService, "encryptionService");
}