Skip to content

Commit

Permalink
Make reportExternalCall private when externalTracer passed
Browse files Browse the repository at this point in the history
  • Loading branch information
obenkenobi committed Oct 1, 2024
1 parent 6161e57 commit d60721a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void reportExternalCall(HttpURLConnection connection, Ops operation, int respons
* @param responseMessage response message from HttpURLConnection
* @param externalTracer tracer of which the external call will be reported to
*/
void reportExternalCall(HttpURLConnection connection, Ops operation, int responseCode, String responseMessage, TracedMethod externalTracer) {
private void reportExternalCall(HttpURLConnection connection, Ops operation, int responseCode, String responseMessage, TracedMethod externalTracer) {
if (connection != null) {
// This conversion is necessary as it strips query parameters from the URI
String uri = URISupport.getURI(connection.getURL());
Expand Down

0 comments on commit d60721a

Please sign in to comment.