remove warning about missing configuration during project init
Resolves #148
This commit is contained in:
parent
81fe2e7852
commit
7fd6526405
@ -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
|
||||||
|
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user