diff --git a/CHANGELOG.md b/CHANGELOG.md index 8589ddd..3d3cdd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ # easy-i18n Changelog ## [Unreleased] +### Changed +- Removed warning about missing configuration during project initialization + ### Fixed - Folding support for Vue files diff --git a/src/main/java/de/marhali/easyi18n/DataStore.java b/src/main/java/de/marhali/easyi18n/DataStore.java index 2d9a12b..b335c88 100644 --- a/src/main/java/de/marhali/easyi18n/DataStore.java +++ b/src/main/java/de/marhali/easyi18n/DataStore.java @@ -62,9 +62,7 @@ public class DataStore { this.data = new TranslationData(settings.isSorting()); successResult.accept(false); - if(ex instanceof EmptyLocalesDirException) { - NotificationHelper.createEmptyLocalesDirNotification(project); - } else { + if(!(ex instanceof EmptyLocalesDirException)) { NotificationHelper.createIOError(settings, ex); } }