mirror of https://github.com/apache/lucene.git
deprecate useless ctor (should be private)
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@905064 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
39b9f97cd4
commit
2b6fb2ddab
|
@ -23,6 +23,16 @@ package org.apache.lucene.util;
|
|||
* @lucene.internal
|
||||
*/
|
||||
public final class ArrayUtil {
|
||||
|
||||
/**
|
||||
* @deprecated This constructor was not intended to be public and should not be used.
|
||||
* This class contains solely a static utility methods.
|
||||
* It will be made private in Lucene 4.0
|
||||
*/
|
||||
// make private in 4.0!
|
||||
@Deprecated
|
||||
public ArrayUtil() {} // no instance
|
||||
|
||||
/*
|
||||
Begin Apache Harmony code
|
||||
|
||||
|
|
Loading…
Reference in New Issue