Skip to content

Commit

Permalink
Removing the Prints
Browse files Browse the repository at this point in the history
All the print methods were removed.
  • Loading branch information
bgoktugozdemir-dev authored Feb 6, 2021
1 parent 8ce90e0 commit eebae68
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 eebae68

Please sign in to comment.