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 2022/10/05 22:05:10 UTC

[royale-compiler] branch develop updated: linter: fix wrong mapping with => no-with

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 c559910c2 linter: fix wrong mapping with => no-with
c559910c2 is described below

commit c559910c2a8bc5e995ebfb96740128faba7fe2f9
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Wed Oct 5 15:04:57 2022 -0700

    linter: fix wrong mapping with => no-with
---
 linter/src/main/java/org/apache/royale/linter/config/Configuration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linter/src/main/java/org/apache/royale/linter/config/Configuration.java b/linter/src/main/java/org/apache/royale/linter/config/Configuration.java
index 6d920f615..fbb3f0aaa 100644
--- a/linter/src/main/java/org/apache/royale/linter/config/Configuration.java
+++ b/linter/src/main/java/org/apache/royale/linter/config/Configuration.java
@@ -805,7 +805,7 @@ public class Configuration {
     }
 
     @Config
-    @Mapping("with")
+    @Mapping("no-with")
     public void setNoWith(ConfigurationValue cv, boolean b) {
         this.noWith = b;
     }