0

I am using netbeans to develop simple android apps and i am looking at various short tutorials online.In one such tutorials that i have downloaded,some text is crossed by a line this .SmsManager

This is a small screenshot i made

enter image description here

What could be causing this?.

user3272483
  • 408
  • 3
  • 13
  • Duplicate of http://stackoverflow.com/questions/7486092/what-does-strikethrough-mean-in-netbeans – ahmed Jul 31 '14 at 20:58

1 Answers1

2

It usually indicates a deprecated class or method that you shouldn't use.

As for the specific deprecated class in your image :

This class was deprecated in API level 4. Replaced by
android.telephony.SmsManager that supports both GSM and CDMA.

(Source)

Eran
  • 387,369
  • 54
  • 702
  • 768