time/energy in message data only integer precision
This commit is contained in:
parent
56b4263107
commit
8234293e5a
1 changed files with 2 additions and 2 deletions
|
@ -56,8 +56,8 @@ final class MessageData implements Cloneable
|
||||||
+ "\t" + linkinitcost
|
+ "\t" + linkinitcost
|
||||||
+ "\t" + wayKeyValues
|
+ "\t" + wayKeyValues
|
||||||
+ "\t" + ( nodeKeyValues == null ? "" : nodeKeyValues )
|
+ "\t" + ( nodeKeyValues == null ? "" : nodeKeyValues )
|
||||||
+ "\t" + time
|
+ "\t" + ((int)time)
|
||||||
+ "\t" + energy;
|
+ "\t" + ((int)energy);
|
||||||
}
|
}
|
||||||
|
|
||||||
void add( MessageData d )
|
void add( MessageData d )
|
||||||
|
|
Loading…
Reference in a new issue