rspec/rules/S1188/description.adoc
2020-06-30 17:16:12 +02:00

1 line
339 B
Plaintext

Anonymous classes and lambdas (with Java 8) are a very convenient and compact way to inject a behavior without having to create a dedicated class. But those anonymous inner classes and lambdas should be used only if the behavior to be injected can be defined in a few lines of code, otherwise the source code can quickly become unreadable.