We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81304d9 commit ad65031Copy full SHA for ad65031
1 file changed
src/main/kotlin/parser/JavaSourceParser.kt
@@ -97,7 +97,7 @@ class JavaSourceParser(private val jarFiles: List<File>) : ClassParser {
97
fields = enumDecl.entries.map {
98
ParsedField(
99
name = it.nameAsString,
100
- type = enumDecl.fullyQualifiedName.toString(),
+ type = enumDecl.fullyQualifiedName.get().toString(),
101
visibility = Visibility.PUBLIC,
102
comment = extractMainComment(it.javadoc.getOrNull())
103
)
0 commit comments