mirror of https://github.com/apache/lucene.git
SOLR-14165: set SolrResponse's serialVersionUID explicitly
This commit is contained in:
parent
8718447112
commit
ffe75fb441
|
@ -37,6 +37,9 @@ import java.io.Serializable;
|
||||||
*/
|
*/
|
||||||
public abstract class SolrResponse implements Serializable, MapWriter {
|
public abstract class SolrResponse implements Serializable, MapWriter {
|
||||||
|
|
||||||
|
/** make this compatible with earlier versions */
|
||||||
|
private static final long serialVersionUID = -7931100103360242645L;
|
||||||
|
|
||||||
/** Elapsed time in milliseconds for the request as seen from the client. */
|
/** Elapsed time in milliseconds for the request as seen from the client. */
|
||||||
public abstract long getElapsedTime();
|
public abstract long getElapsedTime();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue