Skip to content

Commit

Permalink
forget remove two debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
broken1arrow committed Jul 22, 2022
1 parent 1604ca7 commit 704e398
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/org/broken/lib/rbg/TextTranslator.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ private String checkStringForGradient(final String message) {
StringBuilder builder = new StringBuilder();
for (String messag : splitOnGradient(type,message))
builder.append(convertToMulitGradiens(type, messag));
System.out.println("result " + builder);
messageCopy = builder.toString();
}
if (messageCopy == null)
Expand Down Expand Up @@ -296,7 +295,6 @@ public String convertToMulitGradiens(GradientType type,String message) {
builder.append(multiRgbGradient(type, message.substring(Math.max(startIndex, 0), end > 0 ? end : nextEnd > 0 ? nextEnd : message.length()), colorList, checkportions(colorList, portionsList)));
if (end > 0 || nextEnd > 0)
builder.append(message, Math.max(end, 0), message.length());
System.out.println("test == " + builder);
return builder.toString();


Expand Down

0 comments on commit 704e398

Please sign in to comment.