Re: [lang] Each Mutable Number class declares Serializable

2004-10-08 Thread David Graham
Just like any other interface child classes inherit it from their parent. You can remove the implements Serializable from all Number subclasses. They're already Serializable since their parent class is. David --- Gary Gregory [EMAIL PROTECTED] wrote: Hello, I see that java.lang.Number

RE: [lang] Each Mutable Number class declares Serializable

2004-10-08 Thread Gary Gregory
Right, so unless I hear otherwise, I will clean this up over the weekend. Thanks, Gary -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 06:16 To: Jakarta Commons Developers List Subject: Re: [lang] Each Mutable Number class declares

RE: [lang] Each Mutable Number class declares Serializable

2004-10-08 Thread Gary Gregory
class declares Serializable Right, so unless I hear otherwise, I will clean this up over the weekend. Thanks, Gary -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 06:16 To: Jakarta Commons Developers List Subject: Re: [lang] Each

Re: [lang] Each Mutable Number class declares Serializable

2004-10-07 Thread matthew.hawthorne
Gary Gregory wrote: I see that java.lang.Number declares java.io.Serializable. Number subclasses in java.lang do not but each of our Mutable number classes does. This does not seem necessary. Am I missing something? Can we remove these extra declarations? I guess it depends on how likely we think