-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replace all java collectors.toSet with kotlin construct #37538
replace all java collectors.toSet with kotlin construct #37538
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ 1 Ignored Deployment
|
1b6c2f1
to
e7b0a93
Compare
e9c6e0b
to
8e1fa10
Compare
e7b0a93
to
6d44ded
Compare
8e1fa10
to
94b3f5f
Compare
6d44ded
to
9a6ddf1
Compare
94b3f5f
to
f4993cd
Compare
9a6ddf1
to
34b8e6b
Compare
f4993cd
to
40ec450
Compare
34b8e6b
to
abcd37c
Compare
40ec450
to
dff0e27
Compare
abcd37c
to
8346939
Compare
dff0e27
to
f511458
Compare
8346939
to
58a3fb0
Compare
f511458
to
bc2e1f5
Compare
58a3fb0
to
ff32b39
Compare
bc2e1f5
to
e9bd2b1
Compare
ff32b39
to
de84e79
Compare
e9bd2b1
to
b3838ee
Compare
de84e79
to
b8397c6
Compare
b3838ee
to
2ba1799
Compare
b8397c6
to
610061c
Compare
e80c347
to
c870a2c
Compare
610061c
to
ea6f22e
Compare
c870a2c
to
06355c7
Compare
@@ -103,7 +102,7 @@ class CursorManager<S : Any>( | |||
.map { stream: AirbyteStream -> | |||
AirbyteStreamNameNamespacePair.fromAirbyteStream(stream) | |||
} | |||
.collect(Collectors.toSet()) | |||
.toMutableSet() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this specific one is a mutable set ? did some test catch that it needs to be mutated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the line below does an addAll
Merge activity
|
06355c7
to
6a0211a
Compare
What
How
Review guide
User Impact
Can this PR be safely reverted and rolled back?