2012/4/10 Matt Benson <gudnabr...@gmail.com>:
> Hi Luc,
>  What are all these changed files?  :/
>

Apparently it is because of setting svn:eol-style=native.

Subversion internally stores "native" eolns as LF.  The files
apparently used Windows line ends, and so the diffs from converting
'CRLF' -> 'LF' are huge.

Such changes are better be done in a separate commit.

It is possible to use one of "colored" diff formats in viewwc to review this:
http://svn.apache.org/viewvc?view=revision&revision=1311904&diff_format=l


Best regards,
Konstantin Kolinko

>
> On Tue, Apr 10, 2012 at 1:22 PM,  <l...@apache.org> wrote:
>> Author: luc
>> Date: Tue Apr 10 18:22:29 2012
>> New Revision: 1311904
>>
>> URL: http://svn.apache.org/viewvc?rev=1311904&view=rev
>> Log:
>> Added an implementation of Eugene Myers difference algorithm.
>>
>> JIRA: COLLECTIONS-404
>>
>> Added:
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/CommandVisitor.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/DeleteCommand.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/EditCommand.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/EditScript.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/InsertCommand.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/KeepCommand.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/ReplacementsFinder.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/ReplacementsHandler.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/SequencesComparator.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/Snake.java
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/list/difference/package.html
>>    (with props)
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/list/difference/
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/list/difference/SequencesComparatorTest.java
>>    (with props)
>> Modified:
>>    commons/proper/collections/trunk/pom.xml
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/IndexedCollection.java
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CatchAndRethrowClosure.java
>>    
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ComparatorPredicate.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/AbstractDecoratedCollectionTest.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/MockTestCase.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/TestIndexedCollection.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/functors/BasicClosureTestBase.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/functors/TestCatchAndRethrowClosure.java
>>    
>> commons/proper/collections/trunk/src/test/java/org/apache/commons/collections/functors/TestComparatorPredicate.java
>>

(...)
>> Modified: 
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/IndexedCollection.java
>> URL: 
>> http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/IndexedCollection.java?rev=1311904&r1=1311903&r2=1311904&view=diff
>> ==============================================================================
>> --- 
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/IndexedCollection.java
>>  (original)
>> +++ 
>> commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/IndexedCollection.java
>>  Tue Apr 10 18:22:29 2012
>> @@ -1,136 +1,136 @@
>> -/*
>> - * Licensed to the Apache Software Foundation (ASF) under one or more
>> - * contributor license agreements.  See the NOTICE file distributed with
>> - * this work for additional information regarding copyright ownership.
>> - * The ASF licenses this file to You under the Apache License, Version 2.0
>> - * (the "License"); you may not use this file except in compliance with
>> - * the License.  You may obtain a copy of the License at
>> - *
>> - *      http://www.apache.org/licenses/LICENSE-2.0
(...)
>> +/*
>> + * Licensed to the Apache Software Foundation (ASF) under one or more
>> + * contributor license agreements.  See the NOTICE file distributed with
>> + * this work for additional information regarding copyright ownership.
>> + * The ASF licenses this file to You under the Apache License, Version 2.0
>> + * (the "License"); you may not use this file except in compliance with
>> + * the License.  You may obtain a copy of the License at
>> + *
>> + *      http://www.apache.org/licenses/LICENSE-2.0

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to