Skip to content
Merged
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
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<release>8</release>
<source>9</source>
<target>9</target>
<release>9</release>
</configuration>
</plugin>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ public int hashCode() {
public String toString() {
return componentType.toString() + " " + annotationsString() + "[]";
}

@Override
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,9 @@ public String toString() {
typeName.append(rawName);
return annotationsString() + typeName + "<" + typesString(typeArguments) + ">";
}

@Override
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ public boolean equals(Object other) {
public String toString() {
return annotationsString() + ((TypeVariable<?>) type).getName();
}

@Override
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,9 @@ private static void validateBounds(WildcardType type, AnnotatedType[] lowerBound
}
}
}

@Override
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
}
12 changes: 12 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* License: Apache License, Version 2.0
* See the LICENSE file in the root directory or at <a href="http://www.apache.org/licenses/LICENSE-2">apache.org</a>.
*/

/**
* GenTyRef - Type reflection library for Java
*/
module io.leangen.geantyref {
requires static java.desktop;
exports io.leangen.geantyref;
}