use of com.intellij.psi.impl.source.codeStyle.CodeStyleSettingsLoader in project intellij-community by JetBrains.
the class FormatterStarter method readSettings.
private static CodeStyleSettings readSettings(@NotNull String settingsPath) throws SchemeImportException {
VirtualFile vFile = VfsUtil.findFileByIoFile(new File(settingsPath), true);
CodeStyleSettingsLoader loader = new CodeStyleSettingsLoader();
if (vFile == null) {
throw new SchemeImportException("Cannot find file " + settingsPath);
}
return loader.loadSettings(vFile);
}
Aggregations