Shubham Singh
03/07/2023, 4:08 PMrobstoll
03/10/2023, 9:20 PMrobstoll
03/14/2023, 10:05 PMGeorge
03/15/2023, 3:07 PMFunyinoluwa Kashimawo
03/16/2023, 7:07 AMAdrian Witaszak
03/16/2023, 3:41 PMaaverin
03/17/2023, 10:29 AMPablichjenkov
03/17/2023, 6:16 PMrrva
03/22/2023, 8:01 PMMarcello Galhardo
03/23/2023, 6:25 PMholgerbrandl
03/29/2023, 7:04 PMenighma
03/29/2023, 9:41 PMholgerbrandl
03/30/2023, 6:37 AMfun foo(bar:Int = 3) = println(bar)
foo(3) // <- highlight that
Clearly, the warning should be argument/position specific, because typically there are many arguments.groostav
03/30/2023, 8:49 PMVitali Plagov
03/31/2023, 8:25 AMprivate fun assertSomething() {
var count = 2
if (count == 0) {
error("field is empty")
}
runCatching {
doSomeChecks()
}.onFailure {
refresh()
count--
assertSomething()
}
}
And IntelliJ IDEA has an inspection warning on if (count == 0)
, saying that the condition is always false
.
I think it's a wrong warning, no? The count
var will be equal to zero if the doSomeChecks()
will fail twice.Adam Cooper
04/01/2023, 12:38 AMUnexpected lock protocol found in lock file. Expected 3, found 0.
. Online, it seems that this should be fixed by recreating the project, but it happens every time. I found the gradle compatibility matrix, but that did not answer my questionLucas
04/04/2023, 1:39 PMBoth artifact maps contains same key: ".../desktop-jvm-1.0-SNAPSHOT.jar" with different values for kmp: [:desktop:jvmMain, :desktop:commonMain] and platform: :desktop:main
Disappears if i unload the android or desktop moduleAdam S
04/07/2023, 7:36 AMSource files were not indexed to reduce project startup timeso IntelliJ doesn’t index Gradle files, or the generated Kotlin DSL accessors, which I use quite regularly Is it possible to disable this optimisation? I couldn’t see any docs for it.
igor.wojda
04/07/2023, 5:18 PMPRO-123-rename-property
desired PR title: PRO-123 Rename Property
robstoll
04/09/2023, 8:13 PMrobstoll
04/09/2023, 8:19 PMCan't find built-in class kotlin.CloneableI get the error around every 2 seconds. Is there a workaround next do downgrade the plugin?
galvas
04/11/2023, 1:17 PMoperator fun invoke()
method, I'd like to be able to cmd+click the invoke to see the usages of that object being called like object()
galvas
04/11/2023, 1:18 PMPaul Woitaschek
04/15/2023, 1:35 PMIdo Flax
04/18/2023, 7:13 PM2023-04-18 21:06:57,985 [21763066] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities to files
2023-04-18 21:06:58,421 [21763502] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for publish-plugin:main
2023-04-18 21:06:58,422 [21763503] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for publish-plugin:test
2023-04-18 21:06:58,460 [21763541] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:main
2023-04-18 21:06:58,460 [21763541] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:test
2023-04-18 21:07:49,849 [21814930] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:main
2023-04-18 21:07:49,850 [21814931] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:test
2023-04-18 21:08:42,167 [21867248] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities to files
2023-04-18 21:08:42,483 [21867564] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for publish-plugin:main
2023-04-18 21:08:42,484 [21867565] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for publish-plugin:test
2023-04-18 21:08:46,511 [21871592] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. null modules added
2023-04-18 21:08:46,511 [21871592] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 19 in 2 ms: Marking sources to index...
2023-04-18 21:08:47,110 [21872191] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:main
2023-04-18 21:08:47,110 [21872191] INFO - #o.j.s.e.g.GradleProjectDependenciesModel - Collecting dependencies for plugin-github-actions:test
Dave
04/20/2023, 6:03 AMhantsy
04/21/2023, 3:00 AMDataBufferUtils.read
returns a Flux
instead of Flux<DataBuffer>
, when I moved cursor to the read method, from the java doc popup panen, can not access 'reactor.core.publisher.Flux' , check your module classpath for missing or conflict dependencies
. I have built the project manually by gradlew build
, and open the jar file and explore all dependencies in the libs folder, there is no conflict and reactor related the jars are existed in the libs.
The read
is always resolved as an error in IDEA.
val fluxData = DataBufferUtils.read(
ByteArrayResource(content.toByteArray()),
DefaultDataBufferFactory(),
1024
)
hfhbd
04/25/2023, 7:24 AMmethod not called
when I try to debug a method call, but it is called.maxmello
04/25/2023, 8:55 AMzak.taccardi
04/25/2023, 8:26 PMplugins {
groovy
id("kotlin")
}
val fileCollectionSource: ConfigurableFileCollection = objects.fileCollection()
fileCollectionSource
.from(sharedGroovyModifiedSourceDir)
.builtBy(modifySharedGroovyTask)
sharedGroovySource.srcDir(fileCollectionSource)
sourceSets {
main {
groovy {
// I do not want this source to be "editable" by the IDE
source(sharedGroovySource)
}
}
}