MCPcopy Index your code
hub / github.com/OperationT00/T-Code / add

Method add

src/main/java/com/tcode/cli/TCodeHistory.java:16–22  ·  view source on GitHub ↗
(Instant time, String line)

Source from the content-addressed store, hash-verified

14 "(?i).*(data:image/|@image:data:|[A-Za-z0-9+/]{240,}={0,2}).*");
15
16 @Override
17 public void add(Instant time, String line) {
18 if (shouldSkip(line)) {
19 return;
20 }
21 super.add(time, line);
22 }
23
24 static boolean shouldSkip(String line) {
25 if (line == null) {

Calls 1

shouldSkipMethod · 0.95