Skip to content

Commit ebb4a96

Browse files
committed
format
1 parent 1dbe197 commit ebb4a96

4 files changed

Lines changed: 234 additions & 200 deletions

File tree

key.core/src/main/java/de/uka/ilkd/key/proof/io/IntermediatePresentationProofFileParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ public void beginExpr(ProofElementID eid, String str) {
143143
tacletInfo.ifDirectFormulaList = tacletInfo.ifDirectFormulaList.append(str);
144144
}
145145
case KeY_USER -> { // UserLog
146-
if(proof != null) {
146+
if (proof != null) {
147147
if (proof.userLog == null) {
148148
proof.userLog = new ArrayList<>();
149149
}
150150
proof.userLog.add(str);
151151
}
152152
}
153153
case KeY_VERSION -> { // Version log
154-
if(proof != null) {
154+
if (proof != null) {
155155
if (proof.keyVersionLog == null) {
156156
proof.keyVersionLog = new ArrayList<>();
157157
}

key.core/src/main/java/de/uka/ilkd/key/proof/io/IntermediateProofReplayer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,11 +441,12 @@ public Collection<Throwable> getErrors() {
441441
*
442442
* @param proof the current proof to operate on
443443
* @param currInterm The intermediate taclet application to create a "real" application for.
444-
* @param currGoal The goal on which to apply the taclet app.
444+
* @param currGoal The goal on which to apply the taclet app.
445445
* @return The taclet application corresponding to the supplied intermediate representation.
446446
* @throws TacletAppConstructionException In case of an error during construction.
447447
*/
448-
public static TacletApp constructTacletApp(Proof proof, TacletAppIntermediate currInterm, Goal currGoal)
448+
public static TacletApp constructTacletApp(Proof proof, TacletAppIntermediate currInterm,
449+
Goal currGoal)
449450
throws TacletAppConstructionException {
450451

451452
final String tacletName = currInterm.getRuleName();

key.ui/src/main/java/de/uka/ilkd/key/gui/proofreplay/ProofReapplicationExtension.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
* SPDX-License-Identifier: GPL-2.0-only */
44
package de.uka.ilkd.key.gui.proofreplay;
55

6+
import java.util.Collection;
7+
import java.util.List;
8+
69
import de.uka.ilkd.key.core.KeYMediator;
710
import de.uka.ilkd.key.gui.MainWindow;
811
import de.uka.ilkd.key.gui.extension.api.KeYGuiExtension;
912
import de.uka.ilkd.key.gui.extension.api.TabPanel;
13+
1014
import org.jspecify.annotations.NullMarked;
1115
import org.jspecify.annotations.Nullable;
1216

13-
import java.util.Collection;
14-
import java.util.List;
15-
1617
@KeYGuiExtension.Info(name = "Proof Replayer", experimental = false, optional = true,
17-
description = """
18-
UI to help replaying stored proofs on new KeY versions.
19-
"""
20-
)
18+
description = """
19+
UI to help replaying stored proofs on new KeY versions.
20+
""")
2121
@NullMarked
2222
public class ProofReapplicationExtension implements KeYGuiExtension, KeYGuiExtension.LeftPanel {
2323
private @Nullable ProofReapplicationView view;
@@ -29,4 +29,4 @@ public Collection<TabPanel> getPanels(MainWindow window, KeYMediator mediator) {
2929
}
3030
return List.of(view);
3131
}
32-
}
32+
}

0 commit comments

Comments
 (0)