Skip to content

Commit

Permalink
Replace wildcard imports with explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ooeunz committed Nov 27, 2024
1 parent 7247895 commit d243833
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@

package org.apache.hc.core5.http.impl.io;

import org.apache.hc.core5.http.*;
import org.apache.hc.core5.http.ClassicHttpRequest;
import org.apache.hc.core5.http.ClassicHttpResponse;
import org.apache.hc.core5.http.HeaderElements;
import org.apache.hc.core5.http.HttpEntity;
import org.apache.hc.core5.http.HttpHeaders;
import org.apache.hc.core5.http.HttpResponse;
import org.apache.hc.core5.http.Method;
import org.apache.hc.core5.http.HttpException;
import org.apache.hc.core5.http.io.HttpClientConnection;
import org.apache.hc.core5.http.io.HttpResponseInformationCallback;
import org.apache.hc.core5.http.message.BasicClassicHttpRequest;
Expand Down

0 comments on commit d243833

Please sign in to comment.