mirror of https://github.com/apache/cassandra
make NoOp's constructor private as it's a singleton
This commit is contained in:
parent
a899512837
commit
371507a121
|
|
@ -52,6 +52,10 @@ public interface UpdateFunction<V> extends Function<V, V>
|
|||
{
|
||||
return INSTANCE;
|
||||
}
|
||||
|
||||
private NoOp()
|
||||
{
|
||||
}
|
||||
|
||||
public V apply(V replacing, V update)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue