Skip to content

Commit 0571a21

Browse files
committed
feat: remove unecessary semi comma
Signed-off-by: Otavio Santana <[email protected]>
1 parent 6acf0db commit 0571a21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jnosql-redis/src/test/java/org/eclipse/jnosql/databases/redis/communication/RedisBucketManagerFactoryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class RedisBucketManagerFactoryTest {
3939

4040
@BeforeEach
4141
public void setUp() {
42-
managerFactory = KeyValueDatabase.INSTANCE.get();;
42+
managerFactory = KeyValueDatabase.INSTANCE.get();
4343
}
4444

4545
@Test

jnosql-solr/src/test/java/org/eclipse/jnosql/databases/solr/communication/DefaultSolrDocumentManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ void shouldCreateDate() {
427427
entityManager.insert(entity);
428428

429429
List<CommunicationEntity> entities = entityManager.select(select().from("download")
430-
.where(ID).eq(id).build()).collect(Collectors.toList());;
430+
.where(ID).eq(id).build()).collect(Collectors.toList());
431431

432432
assertEquals(1, entities.size());
433433
var documentEntity = entities.get(0);

0 commit comments

Comments
 (0)