Find Usage - Problems Read Write Filters
I use find usage all the time, and I use the read and write filters all the time. I noticed that it stopped working for my @Entity objects.
Example:
@Entity
public class MyEntity {
@ManyToOne(fetch = FetchType.LAZY)
private City city;
@Transient
private Player player;
}
When I do a Find Usage on city, it says "Many to One city" and doesn't show the read/write value. Find Usage for player says "Field player for class MyEntity" and shows the read/write values.
How can I make the find usage on "city" work like it does for "player" without switching the annotations?
Thanks,
Jeff
Please sign in to leave a comment.