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