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" + 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 )