Commit 2402010d authored by d8ahazard's avatar d8ahazard

Oh Github app, I hate you sometimes...

Because it decided not to notice these files...
parent 16c80410
......@@ -16,10 +16,6 @@ import butterknife.ButterKnife;
public class SettingsFragment extends PreferenceFragment {
private CheckBoxPreference quickTilePreference;
private CheckBoxPreference devLogPreference;
private CheckBoxPreference keepRootOffPreference;
private CheckBoxPreference hideRootNotificationPreference;
@Override
public void onCreate(Bundle savedInstanceState) {
......@@ -41,9 +37,8 @@ public class SettingsFragment extends PreferenceFragment {
View view = super.onCreateView(inflater, container, savedInstanceState);
ButterKnife.bind(this, view);
quickTilePreference = (CheckBoxPreference) findPreference("enable_quicktile");
devLogPreference = (CheckBoxPreference) findPreference("developer_logging");
keepRootOffPreference = (CheckBoxPreference) findPreference("keep_root_off");
hideRootNotificationPreference = (CheckBoxPreference) findPreference("hide_root_notification");
CheckBoxPreference keepRootOffPreference = (CheckBoxPreference) findPreference("keep_root_off");
CheckBoxPreference hideRootNotificationPreference = (CheckBoxPreference) findPreference("hide_root_notification");
if (Utils.magiskVersion == -1) {
quickTilePreference.setEnabled(false);
......@@ -65,18 +60,7 @@ public class SettingsFragment extends PreferenceFragment {
}
}
if (preference == devLogPreference) {
boolean isChecked = devLogPreference.isChecked();
}
if (preference == keepRootOffPreference) {
boolean isChecked = devLogPreference.isChecked();
}
if (preference == hideRootNotificationPreference) {
boolean isChecked = devLogPreference.isChecked();
}
return false;
};
......
......@@ -47,6 +47,7 @@ public class ApplicationAdapter extends ArrayAdapter<ApplicationInfo> {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
......
......@@ -24,9 +24,7 @@ public WebWindow(String title, String url, Context context) {
});
alert.setView(wv);
alert.setNegativeButton("Close", (dialog, id) -> {
dialog.dismiss();
});
alert.setNegativeButton("Close", (dialog, id) -> dialog.dismiss());
alert.show();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment