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:
Christoph Goller 2004-10-06 11:26:43 +00:00
parent 4953fa5c71
commit bcafc0d719
1 changed files with 1 additions and 1 deletions

View File

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