Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions test/jdk/javax/net/ssl/TLSCommon/interop/AbstractPeer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -49,13 +49,6 @@ protected void printLog() throws IOException {
System.out.println(Utilities.readFile(logPath).orElse(""));
}

/*
* Deletes log file if exists.
*/
protected void deleteLog() throws IOException {
Utilities.deleteFile(getLogPath());
}

/*
* The negotiated application protocol.
*/
Expand Down
3 changes: 1 addition & 2 deletions test/jdk/javax/net/ssl/TLSCommon/interop/JdkProcClient.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -148,7 +148,6 @@ protected Path getLogPath() {
@Override
public void close() throws IOException {
printLog();
deleteLog();
}

public static void main(String[] args) throws Exception {
Expand Down
3 changes: 1 addition & 2 deletions test/jdk/javax/net/ssl/TLSCommon/interop/JdkProcServer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -166,7 +166,6 @@ public void signalStop() {
public void close() throws IOException {
printLog();
deletePort();
deleteLog();
}

private static int readPort() {
Expand Down