Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Gitlab will go into maintenance Friday 3rd February from 9:00 to 10:00
Open sidebar
minerva
core
Commits
e71b7856
Commit
e71b7856
authored
May 13, 2019
by
Piotr Gawron
Browse files
debug message improved
parent
2b4d7963
Changes
1
Hide whitespace changes
Inline
Side-by-side
model/src/main/java/lcsb/mapviewer/model/map/reaction/AbstractNodeComparator.java
View file @
e71b7856
...
...
@@ -48,7 +48,9 @@ public class AbstractNodeComparator extends Comparator<AbstractNode> {
protected
int
internalCompare
(
AbstractNode
arg0
,
AbstractNode
arg1
)
{
PolylineDataComparator
pdComparator
=
new
PolylineDataComparator
(
epsilon
);
if
(
pdComparator
.
compare
(
arg0
.
getLine
(),
arg1
.
getLine
())
!=
0
)
{
logger
.
debug
(
"Different lines: "
+
arg0
.
getLine
()
+
", "
+
arg1
.
getLine
());
logger
.
debug
(
"Different lines:"
);
logger
.
debug
(
arg0
.
getLine
());
logger
.
debug
(
arg1
.
getLine
());
return
pdComparator
.
compare
(
arg0
.
getLine
(),
arg1
.
getLine
());
}
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment