mbonnin
01/03/2020, 10:19 AMnapperley
01/08/2020, 12:47 AMnapperley
01/08/2020, 1:13 AMbob
01/08/2020, 7:02 AMfeatures
.filter { it.segment.contains(value) }
.filter { inDateRange(it.date) }
.filter { inVersionRange(it.appVersion) }
.filter { it.osVersion.contains(Build.VERSION.SDK_INT) }
.map { it.identifier }
Brendan Weinstein
01/13/2020, 3:14 AMjdemeulenaere
01/14/2020, 12:32 PMSylvain Patenaude
01/15/2020, 5:19 PMtarek
01/17/2020, 8:36 AMRuckus
01/17/2020, 6:55 PM;
?addamsson
01/18/2020, 10:20 PMExecution failed for task ':myProject:jvmTest'.
> No tests found for given includes: [MyClass](filter.includeTestsMatching)
This is the button I'm pressing
What am I doing wrong?Vitali Plagov
01/22/2020, 8:25 AMadd()
as an available method. Though, if I ignore it and type in list.add(version)
then it compiles and works as expected.
Am I doing smth wrong here? Or it’s rather a bug?ribesg
01/23/2020, 2:17 PMGarouDan
01/27/2020, 2:40 PM⇧⌘A
(Shift + Command + a; Find Action shortcut) in IntelliJ I have a strange yellow popup error.
This is also happening with a colleague of mine here. Is this the same with you?
Firstly it was working, then I used the optimise imports from there, and then the error started appearing.
Does someone know how to solve this?
I’m using IntelliJ IDEA 2019.3.2 Ultimate.Ola Gawell
01/28/2020, 12:22 PMOla Gawell
01/28/2020, 12:23 PMGabriel Feo
02/03/2020, 2:00 PM->
with a unicode character →
, and now even vim
is doing this replacement in the terminal (even Slack is doing it as I type -
followed by >
! None of my code compiles anymore because of the illegal characters that have been inserted. Does anyone know how IntelliJ could affect the whole system in this way (and how I can fix this)?
Android Studio 3.5.3Yevhenii Nadtochii
02/03/2020, 6:02 PMPath.of("path/to/some/file")
--> "Calls to static methods in Java interfaces are prohibited in JVM target 1.6. Recompile with '-jvm-target 1.8'"
Dylan
02/04/2020, 9:05 PMTimur Atakishiev
02/05/2020, 4:25 AMGarouDan
02/05/2020, 2:34 PMResource protected by SAML enforcement...
Does someone know how to configure that? It would be better to avoid github review pages which we cannot ignore formatting, for example.Matthieu Stombellini
02/05/2020, 10:27 PMimport Scratch_2.MyEnum.*
enum class MyEnum {
WORD, NUMBER, WHITESPACE
}
val myPairs = listOf(
"example" to WORD,
"42" to NUMBER,
" " to WHITESPACE
)
println(myPairs)
It does not work because of the import on line 1. Unresolved reference: Scratch_2
(note that I use Scratch_n
where n is whatever IntelliJ suggests in the autocompletion menu)
If I replace the first line by import MyEnum.*
directly, then the error is Unresolved reference: MyEnum
The only way of making this code work is by removing the import and specifying MyEnum
every time. Is there any way to make this work?robstoll
02/06/2020, 10:58 AMIvan Pavlov
02/06/2020, 12:51 PMpoohbar
02/07/2020, 9:16 PMSaiz
02/08/2020, 12:41 PMpajatopmr
02/08/2020, 1:06 PMSaiz
02/08/2020, 1:08 PMnapperley
02/09/2020, 1:36 AMSamuel Michael
02/09/2020, 9:43 PMCasey Brooks
02/14/2020, 4:29 PMCasey Brooks
02/14/2020, 4:29 PMdam5s
02/14/2020, 5:06 PMCtrl Shift M
on brace will go to the matching brace. Then Ctrl -
will collapse. Should be more efficient than scrolling and clicking...Alexey Belkov [JB]
02/17/2020, 9:58 AM