That fuck shit the fascists are using
1package org.tm.archive.logsubmit;
2
3import android.content.Context;
4
5import androidx.annotation.NonNull;
6
7/**
8 * Because the actual contents of this section are paged from the database, this class just has a header and no content.
9 */
10public class LogSectionLoggerHeader implements LogSection {
11
12 @Override
13 public @NonNull String getTitle() {
14 return "LOGGER";
15 }
16
17 @Override
18 public @NonNull CharSequence getContent(@NonNull Context context) {
19 return "";
20 }
21
22 @Override
23 public boolean hasContent() {
24 return false;
25 }
26}