1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 20:12:07 +01: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);
}
/**