From b974666d79ebc392b37ec1ae83aae57ae6331c08 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 6 Apr 2011 12:01:16 -0700 Subject: Finish setsockopt(2). Bug: 3107501 Change-Id: I8f026dcba78acb555834bdcc594e114238f3cc52 --- dalvik/src/main/java/dalvik/system/BlockGuard.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'dalvik') diff --git a/dalvik/src/main/java/dalvik/system/BlockGuard.java b/dalvik/src/main/java/dalvik/system/BlockGuard.java index d3c5088..d212cfc 100644 --- a/dalvik/src/main/java/dalvik/system/BlockGuard.java +++ b/dalvik/src/main/java/dalvik/system/BlockGuard.java @@ -264,11 +264,6 @@ public final class BlockGuard { return mNetwork.select(readFDs, writeFDs, numReadable, numWritable, timeout, flags); } - public void setSocketOption(FileDescriptor aFD, int opt, Object optVal) - throws SocketException { - mNetwork.setSocketOption(aFD, opt, optVal); - } - public void close(FileDescriptor aFD) throws IOException { // We exclude sockets without SO_LINGER so that apps can close their network connections // in methods like onDestroy, which will run on the UI thread, without jumping through -- cgit v1.1