Skip to content

Commit ce68810

Browse files
authored
chore: bump utils (#319)
1 parent ed0bf25 commit ce68810

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<dependency>
9595
<groupId>com.bigboxer23</groupId>
9696
<artifactId>utils</artifactId>
97-
<version>2.2.1</version>
97+
<version>2.2.2</version>
9898
</dependency>
9999
<dependency>
100100
<groupId>org.htmlunit</groupId>
@@ -254,12 +254,12 @@
254254
<configuration>
255255
<java>
256256
<googleJavaFormat>
257-
<version>1.17.0</version>
257+
<version>1.25.2</version>
258258
<style>AOSP</style>
259259
<reflowLongStrings>true</reflowLongStrings>
260260
</googleJavaFormat>
261261
<palantirJavaFormat>
262-
<version>2.35.0</version>
262+
<version>2.59.0</version>
263263
</palantirJavaFormat>
264264
<indent>
265265
<tabs>true</tabs>

src/main/java/com/bigboxer23/meural_control/MeuralComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.bigboxer23.meural_control.google.GooglePhotosComponent;
55
import com.bigboxer23.utils.command.Command;
66
import com.bigboxer23.utils.command.RetryingCommand;
7+
import com.bigboxer23.utils.command.VoidCommand;
78
import com.bigboxer23.utils.http.OkHttpUtil;
89
import com.bigboxer23.utils.http.RequestBuilderCallback;
910
import com.squareup.moshi.JsonEncodingException;
@@ -306,10 +307,9 @@ public void reset() {
306307
meuralDevice = null;
307308
}
308309

309-
private Command<Void> resetCommand() {
310+
private VoidCommand resetCommand() {
310311
return () -> {
311312
reset();
312-
return null;
313313
};
314314
}
315315

0 commit comments

Comments
 (0)