glysbaysb opened a new pull request, #1435: URL: https://github.com/apache/cxf/pull/1435
The cxf-codegen-plugin converts a WSDL into java classes, among them the class for the Jax-WS Service. In the template some class members have the modifiers "public final static". The java standard recommends them to be in the order "public static final" > If two or more (distinct) field modifiers appear in a field declaration, it is customary, though not required, that they appear in the order consistent with that shown above in the production for FieldModifier. – https://docs.oracle.com/javase/specs/jls/se20/html/jls-8.html#jls-8.3.1 If the generated source code is checked in to source control it is common that it will be analyzed using checkstyle, Teamscale and other linters. To reduce linter complaints the order should be changed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
