Tobias

Results 219 comments of Tobias

Sorry. Was my playaround with the stale action from GitHub.

Could you check if there is a change within the latest implementations for decompressing change deltas?

Could you give me your sourcecode?

@DaGeRe You are right about using linked list. Since I wanted not to limit the library to ArrayList, I kept this List interface at the core. However, even with an...

Did you use the new Meyer Alg implementation (#134)? Since the unix tools using the proposed variant of Meyers algorithm with linear space and a significant performance gain, I am...

You are right. I investigated so much time implementing this \ No newline at ... and forgot to use it for the patch itself. :)

This library supports it all :). Look into test DuffUtilsTest.testDiffIntegerList. ```java @Test public void testDiffIntegerList() { List original = Arrays.asList(1, 2, 3, 4, 5); List revised = Arrays.asList(2, 3, 4,...

To increase log level use a logging properties. The surefire plugin in the project is already configured this way. However better log messages is always a good way to improve...