Notification이 왜 무효처리 된건지 알고싶습니다.

더이상 지원하지 않는다는 건가요?


        Notification notif = new Notification(statusBarIconID, null, System.currentTimeMillis());
        notif.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");//ringURI;
        notif.flags = Notification.FLAG_INSISTENT;
        notif.setLatestEventInfo(context, from, message, theappIntent);  
        notif.ledARGB = Color.GREEN;
        NotificationManager nm = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);


1번째 라인

Notification notif = new Notification(statusBarIconID, null, System.currentTimeMillis());


4번째 라인

notif.setLatestEventInfo(context, from, message, theappIntent);  


지금 처럼 두개 라인이 무효화 처리되었습니다 ....

알고 싶은게 ..  

왜 저렇게 무효화가 됬는지와 .. 저렇게 무효화 되면 소스자체에서 없는 소스로 판단하는지 .. 

아니면 읽기는 읽는지 알고싶습니다.