Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
323e1673
Commit
323e1673
authored
7 years ago
by
Vladislav.Soroka
Browse files
Options
Download
Email Patches
Plain Diff
Build window: npe fix
parent
1997281e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/compiler/impl/src/com/intellij/build/BuildContentManagerImpl.java
+4
-1
.../impl/src/com/intellij/build/BuildContentManagerImpl.java
with
4 additions
and
1 deletion
+4
-1
java/compiler/impl/src/com/intellij/build/BuildContentManagerImpl.java
+
4
-
1
View file @
323e1673
...
...
@@ -329,7 +329,10 @@ public class BuildContentManagerImpl implements BuildContentManager {
if
(
myContent
==
null
)
return
;
final
Content
content
=
myContent
;
content
.
getManager
().
removeContentManagerListener
(
this
);
ContentManager
contentManager
=
content
.
getManager
();
if
(
contentManager
!=
null
)
{
contentManager
.
removeContentManagerListener
(
this
);
}
ProjectManager
.
getInstance
().
removeProjectManagerListener
(
myProject
,
this
);
content
.
release
();
myContent
=
null
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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