We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c476f3 commit d673ee3Copy full SHA for d673ee3
key.core/src/main/java/de/uka/ilkd/key/proof/init/ProblemInitializer.java
@@ -443,9 +443,10 @@ private InitConfig createInputConfigFor(EnvInput envInput) throws ProofInputExce
443
444
// remove traces of the generic sorts within the base configuration
445
cleanupNamespaces(config);
446
- profile.prepareInitConfig(BASE_INPUT_CONFIG);
447
BASE_INPUT_CONFIG = config;
448
- return BASE_INPUT_CONFIG.copy();
+ config = BASE_INPUT_CONFIG.copy();
+ profile.prepareInitConfig(config);
449
+ return config;
450
}
451
452
/**
0 commit comments