mbien commented on PR #8997: URL: https://github.com/apache/netbeans/pull/8997#issuecomment-3591468981
@haidubogdan no hurry, but could you take a look at this ordering warning? ``` WARNING [org.openide.filesystems.Ordering]: Not all children in Templates/ marked with the position attribute: [Grammar], but some are: [JFX@0, JWS@0, Licenses@0, NetBeansModuleDevelopment-files@0, Privileged@0, Project@0, Recent@0, Services@0, Scripting@20, NetBeansModuleDevelopment@200, JSP_Servlet@600, JSF@700, Bean_Validation@701, OSGi@723, SpringFramework@825, J2EE@860, CDI@876, Classes@900, javafx@909, J2SEModule@999, GUIForms@1000, Beans@1052, AWTForms@1100, UnitTests@1200, SeleniumTests@1210, Html5Tests@1211, cpplite@1250, Micronaut@1280, Persistence@1300, Groovy@1350, WebServices@1500, ClientSide@1610, XML@1700, PayaraResources@1750, SunResources@1800, WebLogicResources@1850, Other@2100, Properties@2900, SaaSServices@3000] ``` `Grammar` is currently the first item on the new file dialog which is probably a bit high given that it is a less common file type. <img width="576" height="344" alt="image" src="https://github.com/user-attachments/assets/b233b15b-8050-4887-9db5-33124828117d" /> Since it is about the folder, you probably will have to add it to the layer like: https://github.com/apache/netbeans/blob/af1a89de9e195e4065e14d30ac68d14599109aac/apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/common/layer.xml#L24-L28 (not sure if it is possible to set it via annotation) I fixed most of those warnings recently via https://github.com/apache/netbeans/pull/8916 - the log line will now also show the positions behind the `@` to make it easier to pick a value. We should keep an eye on layer positions since those are easy to forget while adding new features. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
