public class GoSettings implements PersistentStateComponent<GoSettings>, ExportableComponent {
public boolean SHOW_IMPORT_POPUP = true;
public boolean OPTIMIZE_IMPORTS_ON_THE_FLY = true;
public GoSettings() {
CodeInsightSettings codeInsightSettings = CodeInsightSettings.getInstance();
OPTIMIZE_IMPORTS_ON_THE_FLY = codeInsightSettings.OPTIMIZE_IMPORTS_ON_THE_FLY;
}