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 01895d94822542b8df4f8845197c822c0b7e41c6
Author: Josh Tynjala <[email protected]>
AuthorDate: Mon May 12 08:29:15 2025 -0700

    CSSUnresolvedClassReferenceProblem: add quotes around qname to match other 
problems
    
    This ensures not just consistency, but also that an empty string is clearly 
rendered.
---
 .../royale/compiler/problems/CSSUnresolvedClassReferenceProblem.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/compiler/src/main/java/org/apache/royale/compiler/problems/CSSUnresolvedClassReferenceProblem.java
 
b/compiler/src/main/java/org/apache/royale/compiler/problems/CSSUnresolvedClassReferenceProblem.java
index 324597c4d..5ffeefa77 100644
--- 
a/compiler/src/main/java/org/apache/royale/compiler/problems/CSSUnresolvedClassReferenceProblem.java
+++ 
b/compiler/src/main/java/org/apache/royale/compiler/problems/CSSUnresolvedClassReferenceProblem.java
@@ -30,7 +30,7 @@ import static 
org.apache.royale.compiler.internal.css.CSSStringPropertyValue.str
 public final class CSSUnresolvedClassReferenceProblem extends CSSProblem
 {
     public static final String DESCRIPTION =
-        "${qname} is not defined.";
+        "'${qname}' is not defined.";
 
     public static final int errorCode = 1328;
     /**

Reply via email to