jmfayard
02/21/2020, 2:25 PMHarun Artın
02/21/2020, 8:44 PMLeon K
02/23/2020, 2:33 PMnapperley
02/24/2020, 12:39 AMLeoColman
02/24/2020, 6:40 PMsindrenm
02/26/2020, 6:33 PMlouiscad
02/29/2020, 8:22 AMEllen Spertus
03/02/2020, 10:34 PMs.replace("\\s+", "")
wasyl
03/05/2020, 4:15 PM> Task :analytics:api:kaptGenerateStubsTestKotlin
w: Classpath entry points to a non-existent location: /Users/wasyl/projects/app/analytics/api/build/resources/main
Colton Idle
03/06/2020, 5:28 PMelect
03/16/2020, 7:48 AMDominaezzz
03/17/2020, 11:33 PMSteve
03/17/2020, 11:34 PMOrhan Tozan
03/18/2020, 11:51 PMGunslingor
03/19/2020, 1:50 AMby getting
mean in a gradlekt file?thanksforallthefish
03/19/2020, 12:16 PMtestImplementation project(path: ":core-impl", configuration: "testHelper")
which works fine in 2019 but not in 2020. does somebody else experience the same issue? shall I try to duplicate on a smaller scale or is it already known?Marc Knaup
03/20/2020, 6:13 AMPandaH.
03/20/2020, 2:40 PMOrhan Tozan
03/23/2020, 12:12 PMdata class ChatConversation
, where a chat conversation is always between two users (userId), which type would fit the most? I was thinking about a val userIds: Set<Int>
but that doesn't enforce the min 2, max 2. Also thought about a val userIds: Pair<Int, Int>
, but the fact that Pair(1, 2) == Pair(2, 1)
equals to false makes it a inproper fit given the case here, since a conversation between Bob and Alice should be considered the same as a conversation between Alice and Bob.
EDIT: Possible option:
data class TwoSizedSet<T>(val value: Set<T>) {
init {
require(value.size == 2)
}
}
baxter
03/24/2020, 2:01 AMdanny
03/25/2020, 10:55 PMEllen Spertus
03/26/2020, 5:36 PM@ExistsForTesting
not just @VisibleForTesting
.Oli Bradford
04/07/2020, 7:13 AMgroostav
04/08/2020, 9:15 PMOrhan Tozan
04/10/2020, 3:43 PMGunslingor
04/11/2020, 3:55 AMAnaniya
04/12/2020, 7:24 AMpoohbar
04/12/2020, 5:03 PMColton Idle
04/13/2020, 2:25 PMDominaezzz
04/20/2020, 1:46 PMDominaezzz
04/20/2020, 1:46 PMShawn
04/20/2020, 2:08 PM