Jump to inner Java class from property doesn't work.
angelozerr opened this issue · 0 comments
angelozerr commented
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
[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.