File tree Expand file tree Collapse file tree
scribejava-core/src/main/java/com/github/scribejava/core/model
scribejava-httpclient-ahc Expand file tree Collapse file tree Original file line number Diff line number Diff line change 130130 <dependency >
131131 <groupId >com.puppycrawl.tools</groupId >
132132 <artifactId >checkstyle</artifactId >
133- <version >7.1</version >
133+ <version >7.1.2 </version >
134134 </dependency >
135135 </dependencies >
136136 </plugin >
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ private String parseBodyContents() throws IOException {
5050
5151 private Map <String , String > parseHeaders (HttpURLConnection conn ) {
5252 final Map <String , String > headers = new HashMap <>();
53- for (final Entry <String , List <String >> entry : conn .getHeaderFields ().entrySet ()) {
53+ for (Entry <String , List <String >> entry : conn .getHeaderFields ().entrySet ()) {
5454 final String key = entry .getKey ();
5555 if ("Content-Encoding" .equalsIgnoreCase (key )) {
5656 headers .put ("Content-Encoding" , entry .getValue ().get (0 ));
Original file line number Diff line number Diff line change 2323 <dependency >
2424 <groupId >org.asynchttpclient</groupId >
2525 <artifactId >async-http-client</artifactId >
26- <version >2.0.14 </version >
26+ <version >2.0.15 </version >
2727 </dependency >
2828 </dependencies >
2929
You can’t perform that action at this time.
0 commit comments