Skip to content

Commit a013e33

Browse files
committed
update checkstyle, fix some violations, update changelog
1 parent bfa0109 commit a013e33

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[SNAPSHOT]
2-
* Remove OAuthRequestAsync, just OAuthRequest. Request should know about sync vs async
2+
* Remove OAuthRequestAsync, just OAuthRequest. Request should know about sync vs async. Move default Http engine to JDKHttpClient.
33

44
[3.4.1]
55
* Drop deprecated methods

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<dependency>
133133
<groupId>com.puppycrawl.tools</groupId>
134134
<artifactId>checkstyle</artifactId>
135-
<version>7.3</version>
135+
<version>7.4</version>
136136
</dependency>
137137
</dependencies>
138138
</plugin>

scribejava-apis/src/test/java/com/github/scribejava/apis/examples/TheThingsNetworkV1StagingExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public static void main(String... args) throws IOException, InterruptedException
9090
System.out.println();
9191
System.out.println(response.getCode());
9292

93-
if(response.getCode()==401) {
93+
if (response.getCode() == 401) {
9494
System.out.println("Not authorised: "+response.getBody());
9595
} else {
9696
System.out.println("You should see a JSON array of your registered applications:");

scribejava-apis/src/test/java/com/github/scribejava/apis/examples/TheThingsNetworkV2PreviewExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static void main(String... args) throws IOException, InterruptedException
8787
System.out.println();
8888
System.out.println(response.getCode());
8989

90-
if(response.getCode()==401) {
90+
if (response.getCode() == 401) {
9191
System.out.println("Not authorised: "+response.getBody());
9292
} else {
9393
System.out.println("You should see a JSON array of your registered applications:");

0 commit comments

Comments
 (0)