summaryrefslogtreecommitdiffstats
path: root/dalvik
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2011-04-06 12:01:16 -0700
committerElliott Hughes <enh@google.com>2011-04-06 12:01:16 -0700
commitb974666d79ebc392b37ec1ae83aae57ae6331c08 (patch)
tree03dcfbab1a28a1c47e2800b2f0a619534ee2c7df /dalvik
parent20d31c45e9f004e0eb1b5f452cb6f4c38fb73404 (diff)
downloadlibcore-b974666d79ebc392b37ec1ae83aae57ae6331c08.zip
libcore-b974666d79ebc392b37ec1ae83aae57ae6331c08.tar.gz
libcore-b974666d79ebc392b37ec1ae83aae57ae6331c08.tar.bz2
Finish setsockopt(2).
Bug: 3107501 Change-Id: I8f026dcba78acb555834bdcc594e114238f3cc52
Diffstat (limited to 'dalvik')
-rw-r--r--dalvik/src/main/java/dalvik/system/BlockGuard.java5
1 files changed, 0 insertions, 5 deletions
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