You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.adoc
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,10 +79,10 @@ See https://github.com/spring-projects/spring-security/tree/main#building-from-s
79
79
80
80
The wiki pages https://github.com/spring-projects/spring-framework/wiki/Code-Style[Code Style] and https://github.com/spring-projects/spring-framework/wiki/IntelliJ-IDEA-Editor-Settings[IntelliJ IDEA Editor Settings] define the source file coding standards we use along with some IDEA editor settings we customize.
81
81
82
-
To format the code as well as check the style, run `./gradlew format && ./gradlew check`.
82
+
Additionally, since Streams are https://github.com/spring-projects/spring-security/issues/7154[much slower] than `for` loops, please use them judiciously.
83
+
The team may ask you to change to a `for` loop if the given code is along a hot path.
83
84
84
-
NOTE: Since the Stream API is https://github.com/spring-projects/spring-security/issues/7154[much slower] than `for` loop, please use it judiciously.
85
-
The team may ask you to change it to a `for` loop if the given code is along a hot path.
85
+
To format the code as well as check the style, run `./gradlew format && ./gradlew check`.
0 commit comments