Skip to content

Commit

Permalink
Use Jakarta EE 9 fetchgraph hint.
Browse files Browse the repository at this point in the history
Migrate from the old Java EE fetchgraph hint (javax.persistence.fetchgraph) to the new Jakarta EE fetchgraph hint (jakarta.persistence.fetchgraph) hint.

Resolves #2825
Original pull request #2828
  • Loading branch information
gregturn authored and schauder committed Feb 28, 2023
1 parent ff9e081 commit dbb92d3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
*
* @author Jens Schauder
* @author Petr Strnad
* @author Greg Turnquist
* @since 2.6
*/
abstract class EntityGraphFactory {

public static final String HINT = "javax.persistence.fetchgraph";
public static final String HINT = "jakarta.persistence.fetchgraph";

/**
* Create an {@link EntityGraph} from a collection of properties.
Expand Down

0 comments on commit dbb92d3

Please sign in to comment.