Skip to content

Commit a1f35a3

Browse files
committed
spotless
1 parent 9b39f3d commit a1f35a3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

key.core/src/main/java/de/uka/ilkd/key/scripts/LetCommand.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import java.util.List;
77
import java.util.Map;
8-
import java.util.NoSuchElementException;
98

109
import de.uka.ilkd.key.control.AbstractUserInterfaceControl;
1110
import de.uka.ilkd.key.logic.Term;

key.core/src/main/java/de/uka/ilkd/key/scripts/ProofScriptCommand.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ public interface ProofScriptCommand {
3434
/// @throws ScriptException if something bad happens
3535
/// @throws InterruptedException if something bad happens
3636
// TODO downgrade AbstractUserInterfaceControl to UserInterfaceControl
37-
void execute(AbstractUserInterfaceControl uiControl, ScriptCommandAst args, EngineState stateMap)
37+
void execute(AbstractUserInterfaceControl uiControl, ScriptCommandAst args,
38+
EngineState stateMap)
3839
throws ScriptException, InterruptedException;
3940

40-
/// Returns the name of this proof command. The name should be constant and not be clash with the
41+
/// Returns the name of this proof command. The name should be constant and not be clash with
42+
/// the
4143
/// name of other commands. The name is essential for finding this command within an hashmap.
4244
///
4345
/// @return a non-null, non-empty string
@@ -51,7 +53,8 @@ void execute(AbstractUserInterfaceControl uiControl, ScriptCommandAst args, Engi
5153
/// inside [ScriptCommandAst]. For example [LetCommand] announce `letf` as an
5254
/// alias for an overwriting binding, otherwise error are thrown on re-binding.
5355
///
54-
/// @return an unmodifiable list of alias names under which command can be called, including [#getName()]
56+
/// @return an unmodifiable list of alias names under which command can be called, including
57+
/// [#getName()]
5558
default List<String> getAliases() {
5659
return List.of(getName());
5760
}

0 commit comments

Comments
 (0)