Fix stray references to the javax package name

Co-authored-by: Jami <57204504+jcogs33@users.noreply.github.com>
This commit is contained in:
Chris Smowton
2025-04-02 10:03:49 +01:00
committed by GitHub
parent 3c555fce11
commit 77e4d9e692

View File

@@ -713,7 +713,7 @@ class VersionAnnotation extends Annotation {
VersionAnnotation() { this.getType().hasQualifiedName(getAPersistencePackageName(), "Version") }
}
/** The interface `javax.persistence.EntityManager`. */
/** The interface `{javax,jakarta}.persistence.EntityManager`. */
class TypeEntityManager extends Interface {
TypeEntityManager() { this.hasQualifiedName(getAPersistencePackageName(), "EntityManager") }
@@ -736,7 +736,7 @@ class TypeEntityManager extends Interface {
}
}
/** The interface `javax.persistence.Query`, which represents queries in the Java Persistence Query Language. */
/** The interface `{javax,jakarta}.persistence.Query`, which represents queries in the Java Persistence Query Language. */
class TypeQuery extends Interface {
TypeQuery() { this.hasQualifiedName(getAPersistencePackageName(), "Query") }