Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Oct 15, 2023
1 parent 2dfa71b commit ead41f1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/test/java/dev/morphia/test/TestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import java.util.Map;
import java.util.Map.Entry;
import java.util.function.Supplier;
import java.util.stream.Collectors;

import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoCursor;
Expand Down Expand Up @@ -44,7 +43,6 @@
import static java.nio.file.Files.lines;
import static java.util.stream.Collectors.toList;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertSame;
import static org.testng.Assert.fail;

public abstract class TestBase extends MorphiaTestSetup {
Expand Down Expand Up @@ -292,7 +290,7 @@ private void assertDocumentEquals(String path, Object actual, Object expected) {

@NotNull
private static String append(String path, String key) {
return path.isEmpty() ? key: path + "." + key;
return path.isEmpty() ? key : path + "." + key;
}

private static Object coerceToLong(Object object) {
Expand Down

0 comments on commit ead41f1

Please sign in to comment.