We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this application.properties:
quarkus.native.resources.excludes[0]=foo
Try to do jump to Java method definition :
It doesn't Jump to the excludes method defined in inner Java class io.quarkus.deployment.pkg.NativeConfig$ResourcesConfig
excludes
io.quarkus.deployment.pkg.NativeConfig$ResourcesConfig
[Trace - 11:01:01] Received request 'microprofile/propertyDocumentation - (34)' Params: { "uri": "file:///C:/Users/azerr/IdeaProjects/code-with-quarkus-resources/src/main/resources/application.properties", "sourceType": "io.quarkus.deployment.pkg.NativeConfig$ResourcesConfig", "sourceMethod": "excludes()Ljava/util/Optional;", "documentFormat": 2 }
It is because the method is declared in an inner class which is not supported.
The text was updated successfully, but these errors were encountered:
fix: Jump to inner Java class from property doesn't work.
fd0e2a1
Fixes redhat-developer#1256 Signed-off-by: azerr <azerr@redhat.com>
2852c19
1bc2625
daf7fcb
Fixes #1256 Signed-off-by: azerr <azerr@redhat.com>
angelozerr
Successfully merging a pull request may close this issue.
Given this application.properties:
quarkus.native.resources.excludes[0]=foo
Try to do jump to Java method definition :
It doesn't Jump to the
excludes
method defined in inner Java classio.quarkus.deployment.pkg.NativeConfig$ResourcesConfig
It is because the method is declared in an inner class which is not supported.
The text was updated successfully, but these errors were encountered: