1
0
Fork 0

removed some unused code

This commit is contained in:
sspanak 2024-05-30 18:29:55 +03:00 committed by Dimo Karaivanov
parent 0316924925
commit 7a19d6bcf7
2 changed files with 0 additions and 7 deletions

View file

@ -44,12 +44,6 @@ abstract class BaseMainLayout {
*/
@NonNull protected ArrayList<SoftKey> getKeys() { return keys; }
/**
* getSeparators
* Returns a list of all the separators in the layout so that they can be themed properly.
*/
protected ArrayList<View> getSeparators() { return new ArrayList<>(); }
protected View getView() {
if (view == null) {

View file

@ -96,7 +96,6 @@ class MainLayoutTray extends BaseMainLayout {
return keys;
}
@Override
protected ArrayList<View> getSeparators() {
return new ArrayList<>(Arrays.asList(
view.findViewById(R.id.separator_top),