Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simonstrator
PeerfactSim.KOM
Commits
bccf15b5
Commit
bccf15b5
authored
Feb 15, 2017
by
Björn Richerzhagen
Browse files
Replaced non-error assertion with logger output
parent
6ef17f00
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/de/tud/kom/p2psim/impl/transport/modular/ModularTransLayer.java
View file @
bccf15b5
...
...
@@ -260,7 +260,11 @@ public class ModularTransLayer implements SimHostComponent, TransportComponent,
* FIXME add @Override lateron, as soon as the API is updated globally.
*/
public
void
removeTransportMessageListener
()
{
assert
listener
!=
null
;
// assert listener != null;
if
(
listener
==
null
)
{
Monitor
.
log
(
ModularTransLayer
.
class
,
Level
.
DEBUG
,
"Trying tor remove a non-existing transport message listener."
);
return
;
}
removeTransMsgListener
(
listener
,
localPort
);
listener
=
null
;
}
...
...
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