Don't use 'p' as a parameter name prefix (we don't do that anywhere

else.)

Add missing Javadoc.
This commit is contained in:
Gary Gregory 2020-02-14 18:52:57 -05:00
parent 53f223d3e3
commit 84197ae4e7
1 changed files with 2 additions and 2 deletions

View File

@ -439,8 +439,8 @@ public class Streams {
private static final Set<Characteristics> characteristics = Collections.emptySet(); private static final Set<Characteristics> characteristics = Collections.emptySet();
private final Class<O> elementType; private final Class<O> elementType;
public ArrayCollector(final Class<O> pElementType) { public ArrayCollector(final Class<O> elementType) {
elementType = pElementType; this.elementType = elementType;
} }
@Override @Override