Error compiling

Search This thread

oscaraigf

Senior Member
Nov 19, 2012
162
48
Barcelona
www.darksideteam.com
Hi

Error static
Code:
@Deprecated  public final class SmsManager {
    private static SmsManager sInstance;
    private android.telephony.SmsManager mSmsMgrProxy;

    /** Get the default instance of the SmsManager
     *
     * @return the default instance of the SmsManager
     * @deprecated Use android.telephony.SmsManager.
     */
    @Deprecated
    public static final SmsManager getDefault() {
        if (sInstance == null) {
            sInstance = new SmsManager();

to
Code:
@Deprecated public final class SmsManager {
    private SmsManager sInstance;
    private android.telephony.SmsManager mSmsMgrProxy;

    /** Get the default instance of the SmsManager
     *
     * @return the default instance of the SmsManager
     * @deprecated Use android.telephony.SmsManager.
     */
    @Deprecated
    public final SmsManager getDefault() {
        if (sInstance == null) {
            sInstance = new SmsManager();