Skip to content

Commit

Permalink
Review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuch committed Sep 3, 2024
1 parent 5cbc473 commit ddf0c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/jdk/java/net/httpclient/ProxyServer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2024, 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 @@ -195,8 +195,8 @@ class Connection {
volatile InputStream clientIn, serverIn;
volatile OutputStream clientOut, serverOut;

volatile boolean proxyInClosed;
volatile boolean proxyOutClosed;
boolean proxyInClosed; // only accessed from synchronized block
boolean proxyOutClosed; // only accessed from synchronized block

final static int CR = 13;
final static int LF = 10;
Expand Down

0 comments on commit ddf0c10

Please sign in to comment.