You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MOAObject measureByteSize() could return negative value if the size is > 2^31-1:
`
public interface MOAObject extends Serializable {
/**
* Gets the memory size of this object.
*
* @return the memory size of this object
*/
public int measureByteSize();
/**
* This method produces a copy of this object.
*
* @return a copy of this object
*/
public MOAObject copy();
/**
* Returns a string representation of this object.
* Used in <code>AbstractMOAObject.toString</code>
* to give a string representation of the object.
*
* @param sb the stringbuilder to add the description
* @param indent the number of characters to indent
*/
public void getDescription(StringBuilder sb, int indent);
}
`
The text was updated successfully, but these errors were encountered:
MOAObject measureByteSize() could return negative value if the size is > 2^31-1:
`
public interface MOAObject extends Serializable {
}
`
The text was updated successfully, but these errors were encountered: