Temporary revert

This commit is contained in:
Sylvain Berfini 2012-08-02 16:45:09 +02:00
parent 528907057a
commit d46ad9d3e2

View file

@ -75,8 +75,9 @@ public class ApiElevenPlus {
return notif; return notif;
} }
@SuppressWarnings("deprecation")
public static void setNotificationLatestEventInfo(Notification notif, public static void setNotificationLatestEventInfo(Notification notif,
Context context, String title, String content, PendingIntent intent) { Context context, String title, String content, PendingIntent intent) {
notif.contentIntent = intent; notif.setLatestEventInfo(context, title, content, intent);
} }
} }