Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Release notes:

1.8.0 (not yet released)

-
#76: Make `GenericType<T>` not implement `java.lang.reflect.Type`
(requested by @garretwilson)

1.7.1 (26-Sep-2025)

Expand Down
7 changes: 6 additions & 1 deletion src/main/java/com/fasterxml/classmate/GenericType.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@
* NOTE: before version 1.6 implemented {@link java.io.Serializable}.
* Removed due to
* <a href="https://github.com/FasterXML/java-classmate/issues/73">issue #73</a>.
*<p>
* NOTE: before version 1.8 implemented {@link java.lang.reflect.Type}.
* Removed due to
* <a href="https://github.com/FasterXML/java-classmate/issues/76">issue #76</a>.
*/
public abstract class GenericType<T>
implements java.lang.reflect.Type
// 05-Dec-2025, tatu: [classmate#76] Removed this from 1.8
//implements java.lang.reflect.Type
{
protected GenericType() { }
}
Loading