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/14 17:24:19 UTC

[royale-compiler] branch develop updated: formatter: class should be public

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


The following commit(s) were added to refs/heads/develop by this push:
     new e609665  formatter: class should be public
e609665 is described below

commit e609665f4f6aed24f853ac23359e1a40640cf891
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Thu Oct 14 10:23:58 2021 -0700

    formatter: class should be public
---
 formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java | 2 +-
 1 file changed, 1 insertion(+), 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 7608a45..11ff4b4 100644
--- a/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java
+++ b/formatter/src/main/java/org/apache/royale/formatter/FORMATTER.java
@@ -63,7 +63,7 @@ import org.apache.royale.utils.FilenameNormalization;
 /**
  * Formats .as source files.
  */
-class FORMATTER {
+public class FORMATTER {
 	private static final int TOKEN_TYPE_EXTRA = 999999;
 
 	private static final String NEWLINE = System.getProperty("line.separator");