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
1 changed files with 1 additions and 1 deletions

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);
}
/**