Use private inner class
This commit is contained in:
parent
33489b9114
commit
7bf71f59b8
|
@ -116,11 +116,15 @@ public class HasherCollection implements Hasher {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* IndexProducer that will return duplicates from the collection.
|
* IndexProducer that will return duplicates from the collection.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class HasherCollectionIndexProducer implements IndexProducer {
|
private class HasherCollectionIndexProducer implements IndexProducer {
|
||||||
private final Shape shape;
|
private final Shape shape;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance.
|
||||||
|
*
|
||||||
|
* @param shape The shape for the filter.
|
||||||
|
*/
|
||||||
HasherCollectionIndexProducer(Shape shape) {
|
HasherCollectionIndexProducer(Shape shape) {
|
||||||
this.shape = shape;
|
this.shape = shape;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue