time/energy in message data only integer precision

This commit is contained in:
Arndt Brenschede 2021-05-02 15:31:41 +02:00
parent 56b4263107
commit 8234293e5a

View file

@ -56,8 +56,8 @@ final class MessageData implements Cloneable
+ "\t" + linkinitcost
+ "\t" + wayKeyValues
+ "\t" + ( nodeKeyValues == null ? "" : nodeKeyValues )
+ "\t" + time
+ "\t" + energy;
+ "\t" + ((int)time)
+ "\t" + ((int)energy);
}
void add( MessageData d )