Skip to content

Commit 4b8cdf8

Browse files
authored
Merge pull request #2553 from github/koesie10/nested-name
Use `nestedName` for getting the name of an API
2 parents 3ad3644 + a053792 commit 4b8cdf8

File tree

1 file changed

+1
-1
lines changed
  • extensions/ql-vscode/src/data-extensions-editor/queries

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/data-extensions-editor/queries/java.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class CallableMethod extends Method {
8181
*/
8282
string getApiName() {
8383
result =
84-
this.getDeclaringType().getPackage() + "." + this.getDeclaringType().getSourceDeclaration() +
84+
this.getDeclaringType().getPackage() + "." + this.getDeclaringType().nestedName() +
8585
"#" + this.getName() + paramsString(this)
8686
}
8787

0 commit comments

Comments
 (0)