We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c513d9a commit 81304d9Copy full SHA for 81304d9
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.nameAsString,
+ type = enumDecl.fullyQualifiedName.toString(),
101
visibility = Visibility.PUBLIC,
102
comment = extractMainComment(it.javadoc.getOrNull())
103
)
0 commit comments