Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wadoon committed Apr 20, 2024
1 parent f423328 commit ce2bd72
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* SPDX-License-Identifier: GPL-2.0-only */
package de.uka.ilkd.key.settings;

import java.nio.file.InvalidPathException;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
package de.uka.ilkd.key.gui.smt.settings;

import java.math.RoundingMode;
import java.nio.file.InvalidPathException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
package de.uka.ilkd.key.gui.smt.settings;

import java.math.RoundingMode;
import java.nio.file.InvalidPathException;
import javax.swing.*;

import de.uka.ilkd.key.gui.MainWindow;
Expand Down Expand Up @@ -208,7 +207,7 @@ public void applySettings(MainWindow window) {
String command = solverCommand.getText();
String params = solverParameters.getText();
long timeout = (long) (((Number) solverTimeout.getValue()).doubleValue() * 1000.0);

solverType.setSolverCommand(command);
solverType.setSolverParameters(params);
solverType.setSolverTimeout(timeout);
Expand Down

0 comments on commit ce2bd72

Please sign in to comment.