File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ don't rely on anything impl specific.
101101The default implementations for ` Set ` and ` Map ` should be the ` LinkedHashSet ` and ` LinkedHashMap `
102102because it offers stable iteration order.
103103
104- ### Stream API vs forEach , index loop etc
104+ ### Stream API vs for , index loop etc
105105Using the Stream API is ok in general, but it must kept simple. Stream maps inside
106106maps should be avoided and the inner logic should be refactored into a method.
107107
@@ -174,7 +174,7 @@ method call should be on a new line:
174174Every class/interface should have its one file in general.
175175Inner classes are almost never ok (especially public ones). Every class should have its own file to make it easier to read and explore the code.
176176
177- ### User `graphql.Assert` instead of `Objects`
177+ ### Use `graphql.Assert` instead of `Objects`
178178We maintain our own small set of Assert util methods. Don't use `Objects.requireNonNull` and others in order
179179to be consistent.
180180
You can’t perform that action at this time.
0 commit comments