Skip to content

Commit

Permalink
FIX : Suppression code obsolète
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Oct 24, 2024
1 parent 7cab97e commit b962a7b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package fr.abes.logskbart.repository;

import fr.abes.logskbart.entity.LogKbart;
import org.springframework.data.domain.*;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
import org.springframework.stereotype.Repository;

Expand Down
5 changes: 0 additions & 5 deletions src/main/java/fr/abes/logskbart/service/LogsService.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
@Service
@Slf4j
public class LogsService {
private static final Integer MAXSIZE = 5000;
private final LogKbartRepository repository;

public LogsService(LogKbartRepository logKbartRepository) {
Expand Down Expand Up @@ -68,8 +67,4 @@ public void saveAll(List<LogKbart> logKbarts) {
repository.saveAll(logKbarts);
log.debug("Save done !");
}

public void save(LogKbart logKbart) {
repository.save(logKbart);
}
}

0 comments on commit b962a7b

Please sign in to comment.