Skip to content

Commit

Permalink
Deconflict some layer registration positions
Browse files Browse the repository at this point in the history
 - resolves four org.openide.filesystems.Ordering warnings
 - the older entry is kept, the more recent entry is bumped to a free
   position
  • Loading branch information
mbien committed Apr 3, 2024
1 parent 15393b7 commit 9261205
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

@ActionReferences(value = {
@ActionReference(position = 251, path = "Loaders/text/x-maven-pom+xml/Actions"),
@ActionReference(position = 1800, path = "Projects/org-netbeans-modules-maven/Actions")
@ActionReference(position = 1850, path = "Projects/org-netbeans-modules-maven/Actions")
})

@NbBundle.Messages({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<folder name="x-java">
<folder name="CodeGenerators">
<file name="org-netbeans-modules-jakarta-web-beans-actions-InterceptorFactory.instance">
<attr name="position" intvalue="1000"/>
<attr name="position" intvalue="1100"/>
</file>
</folder>
<folder name="GlyphGutterActions">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public static OptionsPanelController markOccurrences() {
location=OptionsDisplayer.EDITOR,
keywords="#KW_InlineHints",
keywordsCategory="Editor/InlineHints",
position=500
position=600
// toolTip="#CTL_MarkOccurences_ToolTip"
)
public static OptionsPanelController inlineHints() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected void index(Iterable<? extends Indexable> files, Context context) {
}


@MimeRegistration(mimeType="text/x-java", service=CustomIndexerFactory.class, position=1_000)
@MimeRegistration(mimeType="text/x-java", service=CustomIndexerFactory.class, position=1_100)
public static final class FactoryImpl extends CustomIndexerFactory {

@Override
Expand Down

0 comments on commit 9261205

Please sign in to comment.