Skip to content

Commit

Permalink
Fixed that unwanted space character, bruh
Browse files Browse the repository at this point in the history
  • Loading branch information
Minecraftian14 committed May 2, 2021
1 parent b5a8507 commit 4d70ece
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ConsoleDecoration(Decorations.Tag tag, String... codes) {
if (sp.content.contains("P")) brush += "[" + tag.packageName + "]";
if (sp.content.contains("C")) brush += "[" + tag.className + "]";
if (sp.content.contains("M")) brush += "[" + tag.executableName + "]";
sp.prepre = brush + " " + sp.prepre;
if (!brush.equals("")) sp.prepre = brush + " " + sp.prepre;
}
format.append(sp.prepre);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.mcxiv.logger.decorations.Format;
import org.junit.Test;

public class Logger_AnnotationCompilerTest {
public class AnnotationCompilerTest {

@Test
public void demoGenerator() {
Expand Down Expand Up @@ -94,7 +94,7 @@ public void test_NICEFormatting() {
FLog log = FLog.getNew();

// RawFileDecoration.setPartnerDecorationDecoration(TagDecoration::new);
log.setDecorationType(Decorations.RAW);
// log.setDecorationType(Decorations.RAW);

log.prt("1", "Useless Sentences", "Some boring text ahead...",
"So here we have some totally boring text just " +
Expand Down

0 comments on commit 4d70ece

Please sign in to comment.