You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Otavio Rodolfo Piske (Jira)" <ji...@apache.org> on 2023/06/23 10:44:00 UTC

[jira] [Created] (CAMEL-19492) camel-xml-io: fix modifier orders to comply with the JLS

Otavio Rodolfo Piske created CAMEL-19492:
--------------------------------------------

             Summary: camel-xml-io: fix modifier orders to comply with the JLS
                 Key: CAMEL-19492
                 URL: https://issues.apache.org/jira/browse/CAMEL-19492
             Project: Camel
          Issue Type: Task
          Components: camel-xml-io
            Reporter: Otavio Rodolfo Piske


The fields on the class [MXParser|https://github.com/apache/camel/blob/283da849670d2f39867a6aa620abd2cbf1986479/core/camel-xml-io/src/main/java/org/apache/camel/xml/io/MXParser.java#L56-L65] do not comply with the JLS: they are declared as:

 
{code:java}
protected final static{code}
They should be declared as:

 
{code:java}
protected static final {code}
It's a [minor warning|https://sonarcloud.io/project/issues?resolved=false&rules=java%3AS1124&id=apache_camel] on our code analysis.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)