jdiaz
11/17/2018, 12:54 PMbuildSrc
now not linking things properly? I updated yesterday and since then (even rolling back) can't make it compile (it works with the CLI, so not really a problem)poohbar
11/21/2018, 5:17 PMMichal Fudala
11/22/2018, 12:35 PMcompile(group = "io.ktor", name = "ktor", version = "1.0.0")
and what can I do to quickly fix it (invalidate and restart did not help 😞 ) ?Alowaniak
11/22/2018, 3:02 PMrobin
11/23/2018, 11:42 AMdave08
11/27/2018, 11:34 AMnatpryce
11/27/2018, 4:35 PMjessewilson
11/27/2018, 6:20 PMnatpryce
11/28/2018, 3:30 PMbod
11/29/2018, 9:48 AMBurkhard
11/29/2018, 11:50 AM/Users/burkhard/Projects/Kotlin/kotlin-graphics/glm/glm/src/main/kotlin/glm_/vec2/Vec2.kt: (128, 9): ‘to’ hides member of supertype ‘Vec2t’ and needs ‘override’ modifierIs there any way to configure gradle or intellij so that it jumps to the right line as well?
robstoll
11/29/2018, 5:36 PMPaul Woitaschek
12/03/2018, 11:08 AMketurn
12/03/2018, 9:47 PMvoddan
12/04/2018, 11:36 AMdata class
with multiple properties in the constructor, all of them are marked as used (not greaied-out) even when none are used in the code ("Find usages" returns empty). Removing the data
modifier returns things to normal. Is this a bug or intended behavior? How can I quickly see unused data-class properties?rocketraman
12/04/2018, 11:01 PMtevjef
12/05/2018, 4:48 PM/oss/gradle-release/src/main/groovy/net/researchgate/release/ReleasePlugin.kt: (19, 1): you did something wrong
What it could be:
/oss/gradle-release/src/main/groovy/net/researchgate/release/ReleasePlugin.kt:19:1 : you did something wrong
rocketraman
12/06/2018, 4:59 PMCannot access script base class 'kotlin.script.templates.standard.ScriptTemplateWithArgs'. Check your module classpath for missing or conflicting dependencies
-- I'm not seeing any issues with the module classpath...keturn
12/09/2018, 10:14 PMMarc Knaup
12/12/2018, 4:14 PMPREFERRED_PROJECT_CODE_STYLE
suddenly come from and how du I turn it off so that my individual code style configuration's name doesn't end in Git?
Note that I've activated Project
code style, so I haven't even set mine for the project 🤔
codeStyleConfig.xml
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Marc" />
</state>
</component>
elect
12/14/2018, 9:54 AMDominaezzz
12/14/2018, 6:31 PMDominaezzz
12/19/2018, 9:03 PMCollection<...>
. The only difference is one is on Collection<String>
and the other is Collection<Closeable>
. IntelliJ complains they have the same signature on JVM. Even though they are inline functions?Dmitry Kandalov
12/26/2018, 10:54 AMTestFailedLineInspection
class). Are there any plans to have something similar for Kotlin (or :youtrack: issue to vote for)?Czar
12/29/2018, 10:41 AMclass JavaBean {
private String a;
public String getA() { return this.a; }
}
I want access in :kotlin: to be marked somehow, e.g. weak warning or underline or colorlouiscad
01/03/2019, 11:52 PMotakusenpai
01/04/2019, 1:13 PMDalinar
01/06/2019, 6:43 AM?
or not ? if I change double
to @Nullable Double
then in the kotlin code it becomes @Nullable Double?
and then i must do a search and replace. This is for the return value but from past experience I think that happens in parameters as wellmuralimohan962
01/08/2019, 7:58 AMShawn
01/08/2019, 7:28 PMcmd+shift+b
on the variable name should take you to the implementation…Shawn
01/08/2019, 7:28 PMcmd+shift+b
on the variable name should take you to the implementation…Andrew Gazelka
01/08/2019, 7:31 PM