Search before asking
Description
There is a lot of old code in FE, we can do some enhancement.
There are
- replace for(Type thing: things) with things.foreach()
for (String sessionId : sessionIds) {
XXX
}
->
sessionIds.foreach(sessionId -> {
XXX
})
IDEA will remind some typo in annotation, we can fix it.
- ....
Solution
No response
Are you willing to submit PR?
Code of Conduct