remove warning about missing configuration during project init

Resolves #148
This commit is contained in:
marhali 2022-09-03 16:38:48 +02:00
parent 81fe2e7852
commit 7fd6526405
2 changed files with 4 additions and 3 deletions

View File

@ -3,6 +3,9 @@
# easy-i18n Changelog # easy-i18n Changelog
## [Unreleased] ## [Unreleased]
### Changed
- Removed warning about missing configuration during project initialization
### Fixed ### Fixed
- Folding support for Vue files - Folding support for Vue files

View File

@ -62,9 +62,7 @@ public class DataStore {
this.data = new TranslationData(settings.isSorting()); this.data = new TranslationData(settings.isSorting());
successResult.accept(false); successResult.accept(false);
if(ex instanceof EmptyLocalesDirException) { if(!(ex instanceof EmptyLocalesDirException)) {
NotificationHelper.createEmptyLocalesDirNotification(project);
} else {
NotificationHelper.createIOError(settings, ex); NotificationHelper.createIOError(settings, ex);
} }
} }