style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-20 13:57:58 +00:00
parent 1e7f8a1969
commit 65d79b010c

View file

@ -14,7 +14,7 @@ export abstract class DwengoEntityRepository<T extends object> extends EntityRep
// The faulty query is then retried everytime something is persisted. By clearing the entity // The faulty query is then retried everytime something is persisted. By clearing the entity
// Manager in that case, we make sure that future queries will work. // Manager in that case, we make sure that future queries will work.
if (e instanceof SyntaxErrorException) { if (e instanceof SyntaxErrorException) {
getLogger().error("SyntaxErrorException caught => entity manager cleared."); getLogger().error('SyntaxErrorException caught => entity manager cleared.');
this.em.clear(); this.em.clear();
} else { } else {
throw e; throw e;