make NoOp's constructor private as it's a singleton

This commit is contained in:
Dave Brosius 2014-06-03 00:01:11 -04:00
parent a899512837
commit 371507a121
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@ public interface UpdateFunction<V> extends Function<V, V>
{
return INSTANCE;
}
private NoOp()
{
}
public V apply(V replacing, V update)
{