> >      /**
> >       * The default initial capacity - MUST be a power of two.
> > @@ -1396,8 +1396,7 @@ public abstract class AbstractReplicated
> >              try {
> >                  return key(null);
> >              } catch ( Exception x ) {
> > -                log.error("Deserialization error of the
> MapMessage.key",x);
> > -                return null;
> > +                throw new RuntimeException("Deserialization error of
> the MapMessage.key", x);
> >              }
> >          }
> >
> > @@ -1417,8 +1416,7 @@ public abstract class AbstractReplicated
> >              try {
> >                  return value(null);
> >              } catch ( Exception x ) {
> > -                log.error("Deserialization error of the
> MapMessage.value",x);
> > -                return null;
> > +                throw new RuntimeException("Deserialization error of
> the MapMessage.value", x);
>
> Are the above changes to exception handling intended? They are not
> mentioned in the commit message, nor in the changelog.
>
>
>

Thanks for comments.
I'll mention about this side-effect in changelog.


-- 
Keiichi.Fujino

Reply via email to