mirror of https://github.com/apache/lucene.git
SOLR-133 - moving XPP implementation to a Deprecated class. Next commit will move the Stax version to its place.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@552196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
579b316839
commit
631a4a63f1
|
@ -45,9 +45,15 @@ import org.xmlpull.v1.XmlPullParser;
|
|||
import org.xmlpull.v1.XmlPullParserException;
|
||||
import org.xmlpull.v1.XmlPullParserFactory;
|
||||
|
||||
public class XmlUpdateRequestHandler extends RequestHandlerBase
|
||||
/**
|
||||
* This is an XPP implementaion of the XmlUpdateRequestHandler -- it is getting
|
||||
* replaced with a more flexible StAX implementation. This will be remove
|
||||
* before the next official release: solr 1.3
|
||||
*/
|
||||
@Deprecated
|
||||
public class XppUpdateRequestHandler extends RequestHandlerBase
|
||||
{
|
||||
public static Logger log = Logger.getLogger(XmlUpdateRequestHandler.class.getName());
|
||||
public static Logger log = Logger.getLogger(XppUpdateRequestHandler.class.getName());
|
||||
|
||||
private XmlPullParserFactory factory;
|
||||
|
Loading…
Reference in New Issue