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:
Uwe Schindler 2010-01-31 15:59:16 +00:00
parent 39b9f97cd4
commit 2b6fb2ddab
1 changed files with 10 additions and 0 deletions

View File

@ -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