File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
key.ui/src/main/java/de/uka/ilkd/key/gui Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -222,14 +222,12 @@ private void taskFinishedInternal(TaskFinishedInfo info) {
222222 KeYMediator mediator = mainWindow.getMediator();
223223 mediator.getNotationInfo().refresh(mediator.getServices());
224224 if (problemLoader.hasProofScript()) {
225- try {
226- KeyAst.ProofScript scriptAndLoc = problemLoader.readProofScript();
225+ KeyAst.ProofScript scriptAndLoc = problemLoader.getProofScript();
226+ if ( scriptAndLoc != null) {
227227 ProofScriptWorker psw =
228228 new ProofScriptWorker(mainWindow.getMediator(), scriptAndLoc);
229229 psw.init();
230230 psw.execute();
231- } catch (ProofInputException e) {
232- throw new RuntimeException(e);
233231 }
234232 } else if (macroChosen()) {
235233 applyMacro();
You can’t perform that action at this time.
0 commit comments