Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
debugger
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
interactive-KB-debugging
debugger
Commits
5e830f80
There was a problem fetching the pipeline summary.
Commit
5e830f80
authored
8 years ago
by
Wolfgang Schmid
Browse files
Options
Downloads
Patches
Plain Diff
fix for nullpointer: check when closing Protege
parent
89b4d962
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!10
Resolve "Debugger Preferences disappear when invalid values are set"
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
diagnosis/src/main/java/org/exquisite/core/solver/AbstractSolver.java
+4
-2
4 additions, 2 deletions
...c/main/java/org/exquisite/core/solver/AbstractSolver.java
with
4 additions
and
2 deletions
diagnosis/src/main/java/org/exquisite/core/solver/AbstractSolver.java
+
4
−
2
View file @
5e830f80
...
...
@@ -228,8 +228,10 @@ public abstract class AbstractSolver<F> implements ISolver<F>, Observer {
public
void
dispose
()
{
this
.
formulasCache
.
clear
();
this
.
negationsCache
.
clear
();
this
.
diagnosisModel
.
deleteObserver
(
this
);
this
.
diagnosisModel
=
null
;
if
(
diagnosisModel
!=
null
)
{
this
.
diagnosisModel
.
deleteObserver
(
this
);
this
.
diagnosisModel
=
null
;
}
}
@Override
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment