Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rules/S1319/java/rule.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cover the essential features.
When passing collections as method parameters, return values, or when exposing fields,
it is generally recommended to use these interfaces instead of the implementing classes.
The implementing classes, such as `java.util.LinkedList`, `java.util.ArrayList`,
and `java.util.HasMap`, should only be used for collection instantiation.
and `java.util.HashMap`, should only be used for collection instantiation.
They provide finer control over the performance characteristics of those structures,
and developers choose them depending on their use case.

Expand Down