From 09a873138df2d00876ef13cd186c7307718f45c3 Mon Sep 17 00:00:00 2001 From: Chris Smowton Date: Mon, 2 Aug 2021 14:48:42 +0100 Subject: [PATCH] Add missing qldoc --- java/ql/src/semmle/code/java/Reflection.qll | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java/ql/src/semmle/code/java/Reflection.qll b/java/ql/src/semmle/code/java/Reflection.qll index 23cb1a1cd43..2b58866cf6a 100644 --- a/java/ql/src/semmle/code/java/Reflection.qll +++ b/java/ql/src/semmle/code/java/Reflection.qll @@ -47,6 +47,9 @@ private XMLElement elementReferencingType(RefType rt) { } abstract private class ReflectiveClassIdentifier extends Expr { + /** + * Gets the type of a class identified by this expression. + */ abstract RefType getReflectivelyIdentifiedClass(); }