mirror of https://github.com/apache/lucene.git
readResolve has to be accessible from all subclasses.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4953fa5c71
commit
bcafc0d719
|
@ -61,7 +61,7 @@ public abstract class Parameter implements Serializable
|
|||
* @return a reference to Parameter as resolved in the local VM
|
||||
* @throws ObjectStreamException
|
||||
*/
|
||||
private Object readResolve() throws ObjectStreamException {
|
||||
protected Object readResolve() throws ObjectStreamException {
|
||||
Object par = allParameters.get(makeKey(name));
|
||||
|
||||
if(par == null)
|
||||
|
|
Loading…
Reference in New Issue