File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/main/kotlin/com/github/jonathanxd/kores/util Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'license'
55
66apply plugin : ' maven-publish'
77
8- version ' 4.1.10 .base'
8+ version ' 4.1.11 .base'
99
1010jar {
1111 manifest {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ buildscript {
1919}
2020
2121group ' com.github.koresframework'
22- version ' 4.1.10 .base'
22+ version ' 4.1.11 .base'
2323
2424apply from : ' gradle/common.gradle'
2525
Original file line number Diff line number Diff line change @@ -253,18 +253,18 @@ fun MethodDeclarationBase.methodGenericSignature(): String? {
253253 if (generateGenerics) {
254254 signatureBuilder.append(' (' )
255255
256- this .parameters.joinTo(buffer = signatureBuilder, separator = " " ) { it.type.descriptorDiscardBound }
256+ this .parameters.joinTo(buffer = signatureBuilder, separator = " " ) { it.type.descriptor }
257257
258258 signatureBuilder.append(' )' )
259259 }
260260
261261 if (generateGenerics) {
262- signatureBuilder.append(returnType.descriptorDiscardBound )
262+ signatureBuilder.append(returnType.descriptor )
263263 }
264264
265265 if (genForThrows) {
266266 this .throwsClause.forEach {
267- signatureBuilder.append(' ^' ).append(it.descriptorDiscardBound )
267+ signatureBuilder.append(' ^' ).append(it.descriptor )
268268 }
269269 }
270270
You can’t perform that action at this time.
0 commit comments