Skip to content

Commit 4ffe96a

Browse files
committedApr 6, 2022
8282506: Clean up remaining references to TwoStacksPlain*SocketImpl
Reviewed-by: dfuchs
1 parent 741be46 commit 4ffe96a

File tree

3 files changed

+0
-36
lines changed

3 files changed

+0
-36
lines changed
 

‎test/jdk/java/net/DatagramSocket/UnreferencedDatagramSockets.java

-13
Original file line numberDiff line numberDiff line change
@@ -232,19 +232,6 @@ private static void extractRefs(DatagramSocket s, String name) {
232232
fileDescriptorField.setAccessible(true);
233233
FileDescriptor fileDescriptor = (FileDescriptor) fileDescriptorField.get(datagramSocketImpl);
234234
extractRefs(fileDescriptor, name);
235-
236-
Class<?> socketImplClass = datagramSocketImpl.getClass();
237-
System.out.printf("socketImplClass: %s%n", socketImplClass);
238-
if (socketImplClass.getName().equals("java.net.TwoStacksPlainDatagramSocketImpl")) {
239-
Field fileDescriptor1Field = socketImplClass.getDeclaredField("fd1");
240-
fileDescriptor1Field.setAccessible(true);
241-
FileDescriptor fileDescriptor1 = (FileDescriptor) fileDescriptor1Field.get(datagramSocketImpl);
242-
extractRefs(fileDescriptor1, name + "::twoStacksFd1");
243-
244-
} else {
245-
System.out.printf("socketImpl class name not matched: %s != %s%n",
246-
socketImplClass.getName(), "java.net.TwoStacksPlainDatagramSocketImpl");
247-
}
248235
}
249236
} catch (Exception ex) {
250237
ex.printStackTrace();

‎test/jdk/java/net/MulticastSocket/UnreferencedMulticastSockets.java

-13
Original file line numberDiff line numberDiff line change
@@ -270,19 +270,6 @@ private static void extractRefs(DatagramSocket s, String name) {
270270
fileDescriptorField.setAccessible(true);
271271
FileDescriptor fileDescriptor = (FileDescriptor) fileDescriptorField.get(datagramSocketImpl);
272272
extractRefs(fileDescriptor, name);
273-
274-
Class<?> socketImplClass = datagramSocketImpl.getClass();
275-
System.out.printf("socketImplClass: %s%n", socketImplClass);
276-
if (socketImplClass.getName().equals("java.net.TwoStacksPlainDatagramSocketImpl")) {
277-
Field fileDescriptor1Field = socketImplClass.getDeclaredField("fd1");
278-
fileDescriptor1Field.setAccessible(true);
279-
FileDescriptor fileDescriptor1 = (FileDescriptor) fileDescriptor1Field.get(datagramSocketImpl);
280-
extractRefs(fileDescriptor1, name + "::twoStacksFd1");
281-
282-
} else {
283-
System.out.printf("socketImpl class name not matched: %s != %s%n",
284-
socketImplClass.getName(), "java.net.TwoStacksPlainDatagramSocketImpl");
285-
}
286273
}
287274
} catch (Exception ex) {
288275
ex.printStackTrace();

‎test/jdk/java/net/ServerSocket/UnreferencedSockets.java

-10
Original file line numberDiff line numberDiff line change
@@ -185,16 +185,6 @@ private static void extractRefs(Socket s, String name) {
185185
fileDescriptorField.setAccessible(true);
186186
FileDescriptor fileDescriptor = (FileDescriptor) fileDescriptorField.get(socketImpl);
187187
extractRefs(fileDescriptor, name);
188-
189-
Class<?> socketImplClass = socketImpl.getClass();
190-
System.out.printf("socketImplClass: %s%n", socketImplClass);
191-
if (socketImplClass.getClass().getName().equals("java.net.TwoStacksPlainSocketImpl")) {
192-
Field fileDescriptor1Field = socketImplClass.getDeclaredField("fd1");
193-
fileDescriptor1Field.setAccessible(true);
194-
FileDescriptor fileDescriptor1 = (FileDescriptor) fileDescriptor1Field.get(socketImpl);
195-
extractRefs(fileDescriptor1, name + "::twoStacksFd1");
196-
197-
}
198188
} catch (NoSuchFieldException | IllegalAccessException ex) {
199189
ex.printStackTrace();
200190
throw new AssertionError("missing field", ex);

0 commit comments

Comments
 (0)
Please sign in to comment.