Skip to content

Commit

Permalink
test: removed unnecessary code
Browse files Browse the repository at this point in the history
Signed-off-by: Maximillian Arruda <dearrudam@gmail.com>
  • Loading branch information
dearrudam committed Sep 8, 2024
1 parent 3c2d752 commit b315d28
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
@Repository
public interface AsciiCharacters extends DataRepository<AsciiCharacter, Integer> {

long countByHexadecimalNotNull();

@Save
List<AsciiCharacter> saveAll(List<AsciiCharacter> characters);

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


@Query("" +
" order by id asc")
AsciiCharacter[] getAllCharacters();

long countByHexadecimalNotNull();

default void populate() {
if (this.countByHexadecimalNotNull() >= 127)
return;


var dictonary = new LinkedList<AsciiCharacter>();

IntStream.range(1, 128)
Expand Down

0 comments on commit b315d28

Please sign in to comment.