On 29/10/03 8:12 AM, "Michael Becke" <[EMAIL PROTECTED]> wrote:
> I think I've found the problem. In 1.4, Sun added > StringBuffer.append(StringBuffer) to compliment the existing > StringBuffer.append(Object). The problem is that STUPID me ran maven > for this release with 1.4. The method call was bound to the > append(StringBuffer) method, since it is the best option in 1.4. It > looks like the build will have to be regenerated with 1.2.2. That's probably the best option for redoing the rc2 release, however we should change the code to be something like: StringBuffer buf1 = new StringBuffer(); ... buf1.append(getOtherStringBuffer().toString()); The .toString() will make sure that we always use the .append(String) method regardless of which JVM the build is compiled on, thus avoiding this problem in the future. > Does anyone what JVM is used for nightlies? I would have thought it would be 1.4 so that projects which depend on 1.4 would compile correctly, besides GUMP is all about using the latest of everything. > Mike Regards, Adrian Sutton. ---------------------------------------------- Intencha "tomorrow's technology today" Ph: 38478913 0422236329 Suite 8/29 Oatland Crescent Holland Park West 4121 Australia QLD www.intencha.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
