Skip to content

Commit c297fce

Browse files
committed
Fix #76
1 parent 26e8e92 commit c297fce

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

VERSION.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Release notes:
55

66
1.8.0 (not yet released)
77

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

1011
1.7.1 (26-Sep-2025)
1112

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</parent>
88
<artifactId>classmate</artifactId>
99
<name>ClassMate</name>
10-
<version>1.7.2-SNAPSHOT</version>
10+
<version>1.8.0-SNAPSHOT</version>
1111
<packaging>bundle</packaging>
1212
<description>Library for introspecting types with full generic information
1313
including resolving of field and method types.

src/main/java/com/fasterxml/classmate/GenericType.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,14 @@
1818
* NOTE: before version 1.6 implemented {@link java.io.Serializable}.
1919
* Removed due to
2020
* <a href="https://github.com/FasterXML/java-classmate/issues/73">issue #73</a>.
21+
*<p>
22+
* NOTE: before version 1.8 implemented {@link java.lang.reflect.Type}.
23+
* Removed due to
24+
* <a href="https://github.com/FasterXML/java-classmate/issues/76">issue #76</a>.
2125
*/
2226
public abstract class GenericType<T>
23-
implements java.lang.reflect.Type
27+
// 05-Dec-2025, tatu: [classmate#76] Removed this from 1.8
28+
//implements java.lang.reflect.Type
2429
{
2530
protected GenericType() { }
2631
}

0 commit comments

Comments
 (0)