[ 
https://issues.apache.org/jira/browse/SOLR-759?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erick Erickson resolved SOLR-759.
---------------------------------

    Resolution: Won't Fix

SPRING_CLEANING_2013 We can reopen if necessary. 
                
> DateField already formats the date as a string before sending it to the writer
> ------------------------------------------------------------------------------
>
>                 Key: SOLR-759
>                 URL: https://issues.apache.org/jira/browse/SOLR-759
>             Project: Solr
>          Issue Type: Bug
>    Affects Versions: 1.3
>            Reporter: Stephane Bailliez
>            Priority: Minor
>
>   public void write(XMLWriter xmlWriter, String name, Fieldable f) throws 
> IOException {
>     xmlWriter.writeDate(name, toExternal(f));
>   }
>   public void write(TextResponseWriter writer, String name, Fieldable f) 
> throws IOException {
>     writer.writeDate(name, toExternal(f));
>   }
> The above calls the method on the writer that takes a string as a value. For 
> makes the formatting logic in the response writer irrelevant and is 
> inefficient in case you need to format the date differently in a custom 
> writer (you need to parse again the date into a date object that format it 
> again)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to