aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/src/test/pkg/SharedPrefsTest3.java.txt
blob: e5baa00a9584bb42f46fef096c176bbdce65d0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test.pkg;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.*;
import android.os.Bundle;
import android.preference.PreferenceManager;

@SuppressWarnings("unused")
public class SharedPrefsTest3 extends Activity {
    public void test(SharedPreferences preferences) {
        Editor editor = preferences.edit();
    }
}