Wildcard extends pretty printing problem

Issue #78 resolved
Jesper Öqvist created an issue

Example:

class Wild<T extends java.lang.Comparable<? extends T>> {
}

pretty prints as

class Wild<T extends java.lang.Comparable<wildcards.? extends test.Wild@T>> {
}

Comments (2)

  1. Jesper Öqvist reporter

    The problem is caused by the prettyPrinting method using the fullName attribute to print the type bound of T (extends java.lang...).

  2. Log in to comment