https://issues.apache.org/bugzilla/show_bug.cgi?id=45854
Summary: [PATCH] echoproperties: character encoding for text
output
Product: Ant
Version: 1.7.1
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Optional Tasks
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
I would like to modify only one line for the internationalization of
'echoproperties' optional task.
EchoProperties.java
508 protected void jdkSaveProperties(Properties props, OutputStream os,
509 String header) throws IOException {
510 try {
511 props.store(os, header);
512
513 } catch (IOException ioe) {
511 props.store(new OutputStreamWriter(os, "UTF8"), header);
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.