mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
fix IDEA-133542 Eclipse integration: external change or .classpath or .eml does not suggest to reload project (regression)
This commit is contained in:
+1
-2
@@ -22,7 +22,6 @@ package com.intellij.openapi.roots;
|
||||
|
||||
import com.intellij.openapi.diagnostic.Logger;
|
||||
import com.intellij.openapi.module.Module;
|
||||
import com.intellij.openapi.util.WriteExternalException;
|
||||
import com.intellij.pom.java.LanguageLevel;
|
||||
import org.jdom.Element;
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
@@ -78,7 +77,7 @@ public class LanguageLevelModuleExtensionImpl extends ModuleExtension<LanguageL
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeExternal(final Element element) throws WriteExternalException {
|
||||
public void writeExternal(final Element element) {
|
||||
if (myLanguageLevel != null) {
|
||||
element.setAttribute(LANGUAGE_LEVEL_ELEMENT_NAME, myLanguageLevel.toString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user