Skip to content

Commit

Permalink
Change access modifiers in RSQLJPAContext
Browse files Browse the repository at this point in the history
The access modifiers for the path, attribute, and managedType variables in the RSQLJPAContext class have been updated. These were previously set as private, but have now been made package-private.
  • Loading branch information
ng-galien committed Jul 18, 2024
1 parent ecda6c6 commit edd9084
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
@Value(staticConstructor = "of")
class RSQLJPAContext {

private Path<?> path;
private Attribute<?, ?> attribute;
private ManagedType<?> managedType;
Path<?> path;
Attribute<?, ?> attribute;
ManagedType<?> managedType;

}

0 comments on commit edd9084

Please sign in to comment.