Skip to content

Commit

Permalink
Closes #804
Browse files Browse the repository at this point in the history
  • Loading branch information
csnyulas committed Jan 25, 2019
1 parent 0a6fe8d commit 47c2c28
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ public static void warnUserIfReasonerIsNotConfigured(Component owner, OWLReasone
case NO_REASONER_FACTORY_CHOSEN:
JOptionPane.showMessageDialog(owner,
"No reasoner has been selected and initialized so inference cannot proceed. Select a reasoner from the Reasoner menu.",
"Reasoner not initialized.",
"Reasoner not initialized",
JOptionPane.WARNING_MESSAGE);
break;
case REASONER_NOT_INITIALIZED:
JOptionPane.showMessageDialog(owner,
"No reasoner has been initialized so inference cannot proceed. Go to the reasoner menu and select Start reasoner",
"Reasoner not initialized.",
"Reasoner not initialized",
JOptionPane.WARNING_MESSAGE);
break;
case OUT_OF_SYNC:
Expand All @@ -48,7 +48,7 @@ public static void warnUserIfReasonerIsNotConfigured(Component owner, OWLReasone
case INITIALIZATION_IN_PROGRESS:
JOptionPane.showMessageDialog(owner,
"Reasoner still intializing. Wait for initialization to complete.",
"Reasoner initializing.",
"Reasoner initializing",
JOptionPane.WARNING_MESSAGE);
break;
case INITIALIZED:
Expand Down

1 comment on commit 47c2c28

@csnyulas
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I meant to say this commit closes #840, not #804.

Please sign in to comment.