EHC ❯ PropertyUtil.parseProperties using a JDK 1.5+ only feature
-
Bug
-
Status: Closed
-
-
Resolution: Fixed
-
-
-
drb
-
Reporter: sourceforgetracker
-
September 21, 2009
-
0
-
Watchers: 0
-
September 22, 2009
-
September 22, 2009
Description
Version: 1.3.0-beta3
The following line in PropertyUtil.parseProperties attempts to use String.replace(CharSequence, CharSequence), which exists in JDK 1.5+, but not in 1.4 or earlier versions.
propertyLines = propertyLines.replace(propertySeparatorLocal, “\n”);
I’m guessing that 1.4 compatibility is still desired/required, so this probably should be changed back to using String.replace(char, char) if possible. Sourceforge Ticket ID: 1732424 - Opened By: ben_piper - 6 Jun 2007 22:34 UTC
Comments
Sourceforge Tracker 2009-09-21
Fiona OShea 2009-09-22
Re-opening so that I can properly close out these issues and have correct Resolution status in Jira
Logged In: YES user_id=693320 Originator: NO
Ben
Yes 1.4 remains important. Fixed.
Greg Comment by: gregluck - 11 Jun 2007 00:11 UTC