Skip to content

Commit b315d28

Browse files
committed
test: removed unnecessary code
Signed-off-by: Maximillian Arruda <[email protected]>
1 parent 3c2d752 commit b315d28

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

jnosql-mongodb/src/test/java/org/eclipse/jnosql/databases/mongodb/integration/AsciiCharacters.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
@Repository
2727
public interface AsciiCharacters extends DataRepository<AsciiCharacter, Integer> {
2828

29-
long countByHexadecimalNotNull();
30-
3129
@Save
3230
List<AsciiCharacter> saveAll(List<AsciiCharacter> characters);
3331

@@ -39,17 +37,12 @@ public interface AsciiCharacters extends DataRepository<AsciiCharacter, Integer>
3937
" order by id asc")
4038
Character[] getABCDFO();
4139

42-
43-
@Query("" +
44-
" order by id asc")
45-
AsciiCharacter[] getAllCharacters();
46-
40+
long countByHexadecimalNotNull();
4741

4842
default void populate() {
4943
if (this.countByHexadecimalNotNull() >= 127)
5044
return;
5145

52-
5346
var dictonary = new LinkedList<AsciiCharacter>();
5447

5548
IntStream.range(1, 128)

0 commit comments

Comments
 (0)