Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
stups
ProB Rodin Plugin
Commits
694533fe
Commit
694533fe
authored
Aug 27, 2020
by
Michael Leuschel
Browse files
deal with null IProofMonitor in disprover
seems to happen at startup of Rodin 3.5RC
parent
0c6ed428
Changes
1
Hide whitespace changes
Inline
Side-by-side
de.prob.eventb.disprover.core/src/de/prob/eventb/disprover/core/internal/DisproverCommand.java
View file @
694533fe
...
...
@@ -106,11 +106,12 @@ public class DisproverCommand implements IComposableCommand {
job
.
setUser
(
true
);
job
.
schedule
();
while
(
job
.
getResult
()
==
null
&&
!
pm
.
isCanceled
())
{
while
(
job
.
getResult
()
==
null
&&
(
pm
==
null
or
!
pm
.
isCanceled
()))
{
Thread
.
sleep
(
200
);
}
if
(
pm
.
isCanceled
())
{
if
(
pm
!=
null
&&
pm
.
isCanceled
())
{
job
.
cancel
();
throw
new
InterruptedException
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment