Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7b026cdf authored by Fs00's avatar Fs00
Browse files

Remove another unused method

parent b09fcf9c
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -423,17 +423,6 @@ public class MainActivity extends ProgressActivity implements OnPageChangeListen

    }

    public void printBookmarksTree(List<PdfDocument.Bookmark> tree, String sep) {
        for (PdfDocument.Bookmark b : tree) {

            Log.e(TAG, String.format("%s %s, p %d", sep, b.getTitle(), b.getPageIdx()));

            if (b.hasChildren()) {
                printBookmarksTree(b.getChildren(), sep + "-");
            }
        }
    }

    @Override
    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
                                           @NonNull int[] grantResults) {