RED-7918 - RM-62: "Last Modified" date not updated after change

- remove unused local variables
This commit is contained in:
Corina Olariu 2023-11-23 11:59:21 +02:00
parent b99ee73f6b
commit 085d2b3756

View File

@ -675,8 +675,6 @@ public class DossierTemplateImportService {
private List<String> readEntries(byte[] bytes) {
ByteArrayInputStream bInput = new ByteArrayInputStream(bytes);
DataInputStream in = new DataInputStream(bInput);
List<String> entries = new ArrayList<>();
try (BufferedReader br = new BufferedReader(new InputStreamReader(bInput, StandardCharsets.UTF_8))) {
return br.lines().collect(Collectors.toList());