Skip to content

Commit 62238fc

Browse files
committed
Fix variable name in qldoc
1 parent b8ccaf3 commit 62238fc

File tree

1 file changed

+2
-2
lines changed
  • java/ql/lib/semmle/code/java/frameworks/javaee/ejb

1 file changed

+2
-2
lines changed

java/ql/lib/semmle/code/java/frameworks/javaee/ejb/EJB.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ Type inheritsMatchingMethodExceptThrows(SessionEjb ejb, Method m) {
677677
}
678678

679679
/**
680-
* Holds if `ejb` inherits an `ejbCreate` or `@Init` method matching `create` method `m`.
680+
* Holds if `ejb` inherits an `ejbCreate` or `@Init` method matching `create` method `icm`.
681681
* (Ignores `throws` clauses.)
682682
*/
683683
predicate inheritsMatchingCreateMethodIgnoreThrows(
@@ -704,7 +704,7 @@ predicate inheritsMatchingCreateMethodIgnoreThrows(
704704
}
705705

706706
/**
707-
* If `ejb` inherits an `ejbCreate` or `@Init` method matching `create` method `m` except for the `throws` clause,
707+
* If `ejb` inherits an `ejbCreate` or `@Init` method matching `create` method `icm` except for the `throws` clause,
708708
* then return any type in the `throws` clause that does not match.
709709
*/
710710
Type inheritsMatchingCreateMethodExceptThrows(StatefulSessionEjb ejb, EjbInterfaceCreateMethod icm) {

0 commit comments

Comments
 (0)