Message:
The following issue has been closed.
Resolver: Gavin King
Date: Wed, 15 Oct 2003 6:52 AM
fixed it
---------------------------------------------------------------------
View the issue:
http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HB-400
Here is an overview of the issue:
---------------------------------------------------------------------
Key: HB-400
Summary: StrinBuffer.append(StringBuffer) breaks JDK 1.3 in HSQL Dialect
Type: Bug
Status: Closed
Priority: Minor
Resolution: FIXED
Project: Hibernate2
Components:
core
Fix Fors:
2.1 beta 5
Versions:
2.0.3
Assignee:
Reporter: Steve Kwee
Created: Tue, 14 Oct 2003 10:36 AM
Updated: Wed, 15 Oct 2003 6:52 AM
Description:
package net.sf.hibernate.sql
class HSQLCaseFragment
method toFragmentString
StrinBuffer.append(StringBuffer) is a JDK 1.4 feature and breaks
breaks JDK1.3.x compatibility
look for
buf.append(buf2);
should be
buf.append(buf2.toString());
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
|