That fuck shit the fascists are using
1package org.tm.archive.logsubmit;
2
3import android.content.Context;
4
5import androidx.annotation.NonNull;
6
7import org.tm.archive.dependencies.ApplicationDependencies;
8
9public class LogSectionJobs implements LogSection {
10
11 @Override
12 public @NonNull String getTitle() {
13 return "JOBS";
14 }
15
16 @Override
17 public @NonNull CharSequence getContent(@NonNull Context context) {
18 return ApplicationDependencies.getJobManager().getDebugInfo();
19 }
20}