Drop visibility on some fields and classes
As suggested by Android Studio.
This commit is contained in:
parent
7f78b46664
commit
ff3cd9fb11
@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="org.fdroid.fdroid"
|
||||
android:installLocation="auto"
|
||||
android:versionCode="99000"
|
||||
|
@ -23,7 +23,7 @@ import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class FDroidCertPins {
|
||||
public static final String[] DEFAULT_PINS = {
|
||||
private static final String[] DEFAULT_PINS = {
|
||||
|
||||
// OU=PositiveSSL, CN=f-droid.org
|
||||
// Fingerprint: 84B91CDF2312CB9BA7F3BE803783302F8D8C299F
|
||||
@ -57,7 +57,7 @@ public class FDroidCertPins {
|
||||
"87e3bf322427c1405d2736c381e01d1a71d4a039",
|
||||
};
|
||||
|
||||
public static List<String> pinList;
|
||||
private static List<String> pinList;
|
||||
|
||||
public static String[] getPinList() {
|
||||
if (pinList == null) {
|
||||
|
@ -11,12 +11,12 @@ import java.io.InputStream;
|
||||
public class ProgressBufferedInputStream extends BufferedInputStream {
|
||||
private static final String TAG = "ProgressBufferedInputSt";
|
||||
|
||||
final Repo repo;
|
||||
final ProgressListener progressListener;
|
||||
final Bundle data;
|
||||
final int totalBytes;
|
||||
private final Repo repo;
|
||||
private final ProgressListener progressListener;
|
||||
private final Bundle data;
|
||||
private final int totalBytes;
|
||||
|
||||
int currentBytes;
|
||||
private int currentBytes;
|
||||
|
||||
/**
|
||||
* Reports progress to the specified {@link ProgressListener}, with the
|
||||
|
@ -312,7 +312,7 @@ public class UpdateService extends IntentService implements ProgressListener {
|
||||
/**
|
||||
* If we are to update the repos only on wifi, make sure that connection is active
|
||||
*/
|
||||
public static boolean isNetworkAvailableForUpdate(Context context) {
|
||||
private static boolean isNetworkAvailableForUpdate(Context context) {
|
||||
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
|
||||
|
||||
// this could be cellular or wifi
|
||||
|
@ -359,7 +359,7 @@ public final class Utils {
|
||||
}
|
||||
}
|
||||
|
||||
public static String calcFingerprint(byte[] key) {
|
||||
private static String calcFingerprint(byte[] key) {
|
||||
if (key == null)
|
||||
return null;
|
||||
if (key.length < 256) {
|
||||
@ -545,7 +545,7 @@ public final class Utils {
|
||||
* @param bytes an array of bytes.
|
||||
* @return the bytes represented as a string of hexadecimal digits.
|
||||
*/
|
||||
public static String toHexString(byte[] bytes) {
|
||||
private static String toHexString(byte[] bytes) {
|
||||
BigInteger bi = new BigInteger(1, bytes);
|
||||
return String.format("%0" + (bytes.length << 1) + "X", bi);
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ class HoneycombClipboard extends ClipboardCompat {
|
||||
|
||||
private final ClipboardManager manager;
|
||||
|
||||
protected HoneycombClipboard(Context context) {
|
||||
HoneycombClipboard(Context context) {
|
||||
this.manager = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||
}
|
||||
|
||||
|
@ -239,7 +239,7 @@ public class ApkProvider extends FDroidProvider {
|
||||
|
||||
private static final UriMatcher matcher = new UriMatcher(-1);
|
||||
|
||||
public static final Map<String, String> REPO_FIELDS = new HashMap<>();
|
||||
private static final Map<String, String> REPO_FIELDS = new HashMap<>();
|
||||
|
||||
static {
|
||||
REPO_FIELDS.put(DataColumns.REPO_VERSION, RepoProvider.DataColumns.VERSION);
|
||||
|
@ -125,7 +125,7 @@ public abstract class FDroidProvider extends ContentProvider {
|
||||
}
|
||||
|
||||
@TargetApi(11)
|
||||
protected Set<String> getKeySet(ContentValues values) {
|
||||
private Set<String> getKeySet(ContentValues values) {
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
||||
return values.keySet();
|
||||
|
@ -2,7 +2,7 @@ package org.fdroid.fdroid.data;
|
||||
|
||||
import android.database.Cursor;
|
||||
|
||||
public class ValueObject {
|
||||
class ValueObject {
|
||||
|
||||
protected void checkCursorPosition(Cursor cursor) throws IllegalArgumentException {
|
||||
if (cursor.getPosition() == -1) {
|
||||
|
@ -81,15 +81,15 @@ public final class LocalRepoManager {
|
||||
|
||||
private final Map<String, App> apps = new HashMap<>();
|
||||
|
||||
public final SanitizedFile xmlIndex;
|
||||
private final SanitizedFile xmlIndex;
|
||||
private final SanitizedFile xmlIndexJar;
|
||||
private final SanitizedFile xmlIndexJarUnsigned;
|
||||
public final SanitizedFile webRoot;
|
||||
public final SanitizedFile fdroidDir;
|
||||
public final SanitizedFile fdroidDirCaps;
|
||||
public final SanitizedFile repoDir;
|
||||
public final SanitizedFile repoDirCaps;
|
||||
public final SanitizedFile iconsDir;
|
||||
private final SanitizedFile webRoot;
|
||||
private final SanitizedFile fdroidDir;
|
||||
private final SanitizedFile fdroidDirCaps;
|
||||
private final SanitizedFile repoDir;
|
||||
private final SanitizedFile repoDirCaps;
|
||||
private final SanitizedFile iconsDir;
|
||||
|
||||
@Nullable
|
||||
private static LocalRepoManager localRepoManager;
|
||||
@ -243,7 +243,7 @@ public final class LocalRepoManager {
|
||||
copyApksToRepo(new ArrayList<>(apps.keySet()));
|
||||
}
|
||||
|
||||
public void copyApksToRepo(List<String> appsToCopy) {
|
||||
private void copyApksToRepo(List<String> appsToCopy) {
|
||||
for (final String packageName : appsToCopy) {
|
||||
final App app = apps.get(packageName);
|
||||
|
||||
@ -294,7 +294,7 @@ public final class LocalRepoManager {
|
||||
/**
|
||||
* Extracts the icon from an APK and writes it to the repo as a PNG
|
||||
*/
|
||||
public void copyIconToRepo(Drawable drawable, String packageName, int versionCode) {
|
||||
private void copyIconToRepo(Drawable drawable, String packageName, int versionCode) {
|
||||
Bitmap bitmap;
|
||||
if (drawable instanceof BitmapDrawable) {
|
||||
bitmap = ((BitmapDrawable) drawable).getBitmap();
|
||||
|
@ -78,7 +78,7 @@ public abstract class SwapType {
|
||||
}.start();
|
||||
}
|
||||
|
||||
public void ensureRunning() {
|
||||
private void ensureRunning() {
|
||||
if (!isConnected()) {
|
||||
start();
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ public class DownloaderFactory {
|
||||
return "bluetooth".equalsIgnoreCase(url.getProtocol());
|
||||
}
|
||||
|
||||
static boolean isLocalFile(URL url) {
|
||||
private static boolean isLocalFile(URL url) {
|
||||
return "file".equalsIgnoreCase(url.getProtocol());
|
||||
}
|
||||
|
||||
@ -89,7 +89,7 @@ public class DownloaderFactory {
|
||||
return new AsyncDownloadWrapper(create(context, url, destFile, credentials), listener);
|
||||
}
|
||||
|
||||
static boolean isOnionAddress(URL url) {
|
||||
private static boolean isOnionAddress(URL url) {
|
||||
return url.getHost().endsWith(".onion");
|
||||
}
|
||||
|
||||
|
@ -81,7 +81,7 @@ public class HttpDownloader extends Downloader {
|
||||
}
|
||||
}
|
||||
|
||||
boolean isSwapUrl() {
|
||||
private boolean isSwapUrl() {
|
||||
String host = sourceUrl.getHost();
|
||||
return sourceUrl.getPort() > 1023 // only root can use <= 1023, so never a swap repo
|
||||
&& host.matches("[0-9.]+") // host must be an IP address
|
||||
|
@ -18,7 +18,7 @@ public class BluetoothConnection {
|
||||
|
||||
private InputStream input;
|
||||
private OutputStream output;
|
||||
protected final BluetoothSocket socket;
|
||||
private final BluetoothSocket socket;
|
||||
|
||||
public BluetoothConnection(BluetoothSocket socket) throws IOException {
|
||||
this.socket = socket;
|
||||
|
@ -1,12 +1,12 @@
|
||||
package org.fdroid.fdroid.net.bluetooth;
|
||||
|
||||
public class UnexpectedResponseException extends Exception {
|
||||
class UnexpectedResponseException extends Exception {
|
||||
|
||||
public UnexpectedResponseException(String message) {
|
||||
UnexpectedResponseException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public UnexpectedResponseException(String message, Throwable cause) {
|
||||
UnexpectedResponseException(String message, Throwable cause) {
|
||||
super("Unexpected response from Bluetooth server: '" + message + "'", cause);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -47,16 +47,16 @@ public class InstallConfirmActivity extends Activity implements OnCancelListener
|
||||
|
||||
private Intent intent;
|
||||
|
||||
PackageManager mPm;
|
||||
private PackageManager mPm;
|
||||
|
||||
AppDiff mAppDiff;
|
||||
private AppDiff mAppDiff;
|
||||
|
||||
// View for install progress
|
||||
View mInstallConfirm;
|
||||
private View mInstallConfirm;
|
||||
// Buttons to indicate user acceptance
|
||||
private Button mOk;
|
||||
private Button mCancel;
|
||||
CaffeinatedScrollView mScrollView;
|
||||
private CaffeinatedScrollView mScrollView;
|
||||
private boolean mOkCanInstall;
|
||||
|
||||
private static final String TAB_ID_ALL = "all";
|
||||
|
@ -41,7 +41,7 @@ import java.util.List;
|
||||
* care of switch to the correct paged in the ViewPager whenever the selected
|
||||
* tab changes.
|
||||
*/
|
||||
public class TabsAdapter extends PagerAdapter
|
||||
class TabsAdapter extends PagerAdapter
|
||||
implements TabHost.OnTabChangeListener, ViewPager.OnPageChangeListener {
|
||||
private final Context mContext;
|
||||
private final TabHost mTabHost;
|
||||
@ -66,7 +66,7 @@ public class TabsAdapter extends PagerAdapter
|
||||
}
|
||||
}
|
||||
|
||||
public TabsAdapter(Activity activity, TabHost tabHost, ViewPager pager) {
|
||||
TabsAdapter(Activity activity, TabHost tabHost, ViewPager pager) {
|
||||
mContext = activity;
|
||||
mTabHost = tabHost;
|
||||
mViewPager = pager;
|
||||
|
@ -135,7 +135,7 @@ public abstract class AppListFragment extends ListFragment implements
|
||||
* it automatically again, because the repos or internet connection may
|
||||
* be bad.
|
||||
*/
|
||||
public boolean updateEmptyRepos() {
|
||||
private boolean updateEmptyRepos() {
|
||||
final String triedEmptyUpdate = "triedEmptyUpdate";
|
||||
SharedPreferences prefs = getActivity().getPreferences(Context.MODE_PRIVATE);
|
||||
boolean hasTriedEmptyUpdate = prefs.getBoolean(triedEmptyUpdate, false);
|
||||
|
@ -49,22 +49,22 @@ public class PreferencesFragment extends PreferenceFragment
|
||||
addPreferencesFromResource(R.xml.preferences);
|
||||
}
|
||||
|
||||
protected void checkSummary(String key, int resId) {
|
||||
private void checkSummary(String key, int resId) {
|
||||
CheckBoxPreference pref = (CheckBoxPreference) findPreference(key);
|
||||
pref.setSummary(resId);
|
||||
}
|
||||
|
||||
protected void entrySummary(String key) {
|
||||
private void entrySummary(String key) {
|
||||
ListPreference pref = (ListPreference) findPreference(key);
|
||||
pref.setSummary(pref.getEntry());
|
||||
}
|
||||
|
||||
protected void textSummary(String key, int resId) {
|
||||
private void textSummary(String key, int resId) {
|
||||
EditTextPreference pref = (EditTextPreference) findPreference(key);
|
||||
pref.setSummary(getString(resId, pref.getText()));
|
||||
}
|
||||
|
||||
protected void updateSummary(String key, boolean changing) {
|
||||
private void updateSummary(String key, boolean changing) {
|
||||
|
||||
int result = 0;
|
||||
|
||||
@ -174,7 +174,7 @@ public class PreferencesFragment extends PreferenceFragment
|
||||
/**
|
||||
* Initializes SystemInstaller preference, which can only be enabled when F-Droid is installed as a system-app
|
||||
*/
|
||||
protected void initPrivilegedInstallerPreference() {
|
||||
private void initPrivilegedInstallerPreference() {
|
||||
CheckBoxPreference pref = (CheckBoxPreference) findPreference(Preferences.PREF_PRIVILEGED_INSTALLER);
|
||||
|
||||
// we are handling persistence ourself!
|
||||
@ -246,7 +246,7 @@ public class PreferencesFragment extends PreferenceFragment
|
||||
});
|
||||
}
|
||||
|
||||
protected void initManagePrivilegedAppPreference() {
|
||||
private void initManagePrivilegedAppPreference() {
|
||||
Preference pref = findPreference(Preferences.PREF_UNINSTALL_PRIVILEGED_APP);
|
||||
pref.setPersistent(false);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user