Don't use 'p' as a parameter name prefix (we don't do that anywhere
else.) Add missing Javadoc.
This commit is contained in:
parent
53f223d3e3
commit
84197ae4e7
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue