-
Bug
-
Resolution: Done
-
Major
-
2.3 SP1
-
None
-
Low
If MergeView contains subgroups who have Views and MergeViews, then MergeView.readFrom() is probably incorrect because readFrom() explicitly creates a View, not a MergView :
public void readFrom(DataInputStream in) throws IOException, IllegalAccessException, InstantiationException {
super.readFrom(in);
short len=in.readShort();
if(len > 0) {
View v;
subgroups=new Vector();
for(int i=0; i < len; i++)
}
}
- blocks
-
JGRP-318 Backport of JGRP-304 to JGroups 2.2.9 SP4
- Resolved