1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-27 14:04:52 +02:00

Use non-deprecated method in DelayInformationManager

This commit is contained in:
Florian Schmaus 2014-09-24 18:02:32 +02:00
parent b945e591ff
commit 13f4f36995

View file

@ -44,7 +44,7 @@ public class DelayInformationManager {
* @return the Delayed Delivery information or <code>null</code>
*/
public static DelayInformation getXep203DelayInformation(Packet packet) {
return DelayInformation.getFrom(packet);
return DelayInformation.from(packet);
}
/**