Skip to content

Commit e186d69

Browse files
committed
spotless
1 parent 9370b86 commit e186d69

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

key.core/src/main/java/de/uka/ilkd/key/settings/ProofSettings.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
/// MaximumNumberOfHeuristcsApplications=400
3131
/// number = "IntegerLDT.class"
3232
/// boolean = "BooleanLDT.class"
33-
///```
33+
/// ```
3434
///
3535
/// @see Properties
3636
/// @see Settings
3737
public class ProofSettings {
3838
private static final Logger LOGGER = LoggerFactory.getLogger(ProofSettings.class);
3939

4040
public static final File PROVER_CONFIG_FILE =
41-
new File(PathConfig.getKeyConfigDir(), "proof-settings.json");
41+
new File(PathConfig.getKeyConfigDir(), "proof-settings.json");
4242

4343
public static final URL PROVER_CONFIG_FILE_TEMPLATE = KeYResourceManager.getManager()
4444
.getResourceFile(ProofSettings.class, "default-proof-settings.json");
@@ -65,7 +65,7 @@ private static ProofSettings loadedSettings() {
6565
private final StrategySettings strategySettings = new StrategySettings();
6666
private final ChoiceSettings choiceSettings = new ChoiceSettings();
6767
private final ProofDependentSMTSettings smtSettings =
68-
ProofDependentSMTSettings.getDefaultSettingsData();
68+
ProofDependentSMTSettings.getDefaultSettingsData();
6969
private final NewSMTTranslationSettings newSMTSettings = new NewSMTTranslationSettings();
7070
private final TermLabelSettings termLabelSettings = new TermLabelSettings();
7171

@@ -164,7 +164,7 @@ public void loadSettingsFromJSONStream(Reader in) throws IOException {
164164
public void loadDefaultJSONSettings() {
165165
if (PROVER_CONFIG_FILE_TEMPLATE == null) {
166166
LOGGER.warn(
167-
"default proof-settings file 'default-proof-settings.json' could not be found.");
167+
"default proof-settings file 'default-proof-settings.json' could not be found.");
168168
} else {
169169
try (var in = new InputStreamReader(PROVER_CONFIG_FILE_TEMPLATE.openStream())) {
170170
loadSettingsFromJSONStream(in);

0 commit comments

Comments
 (0)