Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WebGUI
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kieker
WebGUI
Commits
a57ac5fb
Commit
a57ac5fb
authored
12 years ago
by
Nils Christian Ehmke
Browse files
Options
Downloads
Patches
Plain Diff
Updated the kieker-jar; Used the new methods of the registry to remove unnecessary elements
parent
f9a03f38
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Kieker.WebGUI/lib/kieker-1.6-SNAPSHOT_emf.jar
+0
-0
0 additions, 0 deletions
Kieker.WebGUI/lib/kieker-1.6-SNAPSHOT_emf.jar
Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java
+12
-0
12 additions, 0 deletions
...ieker/webgui/beans/session/CurrentAnalysisEditorBean.java
with
12 additions
and
0 deletions
Kieker.WebGUI/lib/kieker-1.6-SNAPSHOT_emf.jar
+
0
−
0
View file @
a57ac5fb
No preview for this file type
This diff is collapsed.
Click to expand it.
Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java
+
12
−
0
View file @
a57ac5fb
...
@@ -863,6 +863,8 @@ public final class CurrentAnalysisEditorBean {
...
@@ -863,6 +863,8 @@ public final class CurrentAnalysisEditorBean {
conn
.
getOutputPort
().
setRepository
(
null
);
conn
.
getOutputPort
().
setRepository
(
null
);
}
}
this
.
repositoryMap
.
remove
(
repository
);
if
(
this
.
selectedRepository
==
repository
)
{
if
(
this
.
selectedRepository
==
repository
)
{
this
.
selectedRepository
=
null
;
// NOPMD
this
.
selectedRepository
=
null
;
// NOPMD
}
}
...
@@ -901,7 +903,17 @@ public final class CurrentAnalysisEditorBean {
...
@@ -901,7 +903,17 @@ public final class CurrentAnalysisEditorBean {
}
}
}
}
this
.
filter2repositoryConnections
.
removeAll
(
fRDelList
);
this
.
filter2repositoryConnections
.
removeAll
(
fRDelList
);
this
.
pluginMap
.
remove
(
plugin
);
// Remove the ports from the registry
for
(
final
MIPort
mPort
:
plugin
.
getOutputPorts
())
{
this
.
portMap
.
remove
(
mPort
);
}
if
(
plugin
instanceof
MIFilter
)
{
for
(
final
MIPort
mPort
:
((
MIFilter
)
plugin
).
getInputPorts
())
{
this
.
portMap
.
remove
(
mPort
);
}
}
if
(
this
.
selectedPlugin
==
plugin
)
{
if
(
this
.
selectedPlugin
==
plugin
)
{
this
.
selectedPlugin
=
null
;
// NOPMD
this
.
selectedPlugin
=
null
;
// NOPMD
}
}
...
...
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