hibernate / hibernate-models

An abstraction over "reflection" and annotations
Apache License 2.0
2 stars 5 forks source link

Fix bug in TypeDetails#determineRawClass for parameterized types #31

Closed sebersole closed 4 months ago

sebersole commented 4 months ago

Fix bug in org.hibernate.models.spi.TypeDetails#determineRawClass for parameterized types.

List<String> someList;

Calling TypeDetails#determineRawClass relative to FieldDetails(someList).getType() is returning String, not List