On Fri, Jul 6, 2012 at 3:57 AM, Dawid Weiss
wrote:
>> LOOOL! Too funny, insane! Let's make a beer party!
>
> I agree.
>
> And seriously, no matter what the JDK developers are saying about it
> -Dfile.encoding=UTF-16 rocks at finding things like this... I have a
> batch of fixes, will commi
> LOOOL! Too funny, insane! Let's make a beer party!
I agree.
And seriously, no matter what the JDK developers are saying about it
-Dfile.encoding=UTF-16 rocks at finding things like this... I have a
batch of fixes, will commit soon.
Dawid
---
1 AM
> To: dev@lucene.apache.org
> Subject: Reader vs. inputstream...
>
> OMG! Whoever wrote this owes me a beer :)
>
> TestSolrCoreProperties:
>
> private void copyFile(File src, File dst) throws IOException {
> BufferedReader in = new BufferedReader(new FileReader
OMG! Whoever wrote this owes me a beer :)
TestSolrCoreProperties:
private void copyFile(File src, File dst) throws IOException {
BufferedReader in = new BufferedReader(new FileReader(src));
Writer out = new FileWriter(dst);
for (String line = in.readLine(); null != line; line = in.