SOLR-14165: set SolrResponse's serialVersionUID explicitly

This commit is contained in:
andywebb1975 2020-01-09 14:04:10 +00:00 committed by Noble Paul
parent 8718447112
commit ffe75fb441
1 changed files with 3 additions and 0 deletions

View File

@ -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();