You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2021/10/21 21:33:21 UTC

[royale-compiler] 02/04: formatter: remove debug console output

This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit cc78bac8f3446d8c96eba9def14e803285612d6c
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Thu Oct 21 13:24:14 2021 -0700

    formatter: remove debug console output
---
 formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java b/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java
index 8e632e1..2c33869 100644
--- a/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java
+++ b/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java
@@ -1354,7 +1354,6 @@ public class FORMATTER {
 		int searchIndex = 0;
 		boolean inListing = alreadyInListing;
 		while (searchIndex < lineText.length()) {
-			System.err.println(searchIndex + " " + lineText.length() + " " + inListing);
 			if (!inListing) {
 				searchIndex = lineText.indexOf("<listing", searchIndex);
 				if (searchIndex == -1) {