refactor: rename and delete some patterns (#2970)

This commit is contained in:
Ilkka Seppälä
2024-05-23 17:57:46 +03:00
committed by GitHub
parent 399970f8d1
commit 962e8898e0
94 changed files with 972 additions and 3619 deletions
@@ -23,6 +23,8 @@
* THE SOFTWARE.
*/
package com.iluwatar.serializedentity;
import java.nio.file.Files;
import java.nio.file.Paths;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
@@ -101,5 +103,10 @@ public class CountryTest {
} catch (Exception e) {
LOGGER.error("Error occurred: ", e);
}
try {
Files.deleteIfExists(Paths.get("output.txt"));
} catch (IOException e) {
LOGGER.error("Error occurred: ", e);
}
}
}