Skip to content

Commit

Permalink
Merge pull request #1 from bgoktugozdemir/patch-1
Browse files Browse the repository at this point in the history
Removing the Prints
  • Loading branch information
ThomasGysemans authored Feb 6, 2021
2 parents 8ce90e0 + eebae68 commit 0f9f89b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lib/tag_highlighting.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ class _TagHighlightingState extends State<TagHighlighting> {
String toHighlight = text.substring(match.start, match.end);
previous = match.end;

print("normalText = $normalText \n");
print("toHighlight = $toHighlight \n");

spans.add(TextSpan(
text: normalText
.replaceAll("<$tagName>", "")
Expand All @@ -98,8 +95,6 @@ class _TagHighlightingState extends State<TagHighlighting> {
style: textStyle,
));

print("spans = $spans");

count++;

// to get the end of the text,
Expand Down

0 comments on commit 0f9f89b

Please sign in to comment.