[COLLECTIONS-759]: add newline at end of file, and convert to unix (LF instead of CRLF) fixing checkstyle (#147)
* [COLLECTIONS-759]: add newline at end of file, and convert to unix (LF instead of CRLF) fixing checkstyle * Remove unused import
This commit is contained in:
parent
0c39fbd170
commit
8eebabd481
|
@ -21,6 +21,9 @@
|
|||
</properties>
|
||||
<body>
|
||||
<release version="4.5" date="2020-MM-DD" description="Maintenance release.">
|
||||
<action issue="COLLECTIONS-759" dev="kinow" type="fix">
|
||||
Fix checkstyle issues regarding missing newline at end of file, and CRLF vs LF.
|
||||
</action>
|
||||
<action issue="COLLECTIONS-760" dev="kinow" type="add" due-to="Isira Seneviratne">
|
||||
Add tests for MapUtils
|
||||
</action>
|
||||
|
|
|
@ -19,7 +19,6 @@ package org.apache.commons.collections4;
|
|||
import static org.apache.commons.collections4.functors.EqualPredicate.equalPredicate;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNotSame;
|
||||
import static org.junit.Assert.assertNull;
|
||||
import static org.junit.Assert.assertSame;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
|
|
@ -93,3 +93,4 @@ public abstract class AbstractAvailableLocalesTest {
|
|||
return locale;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -38,3 +38,4 @@ public final class ObjectToStringComparator implements Comparator<Object>, Seria
|
|||
return o1.toString().compareTo(o2.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -56,3 +56,4 @@ public class SetDefaultLocaleTestRule implements TestRule {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -61,3 +61,4 @@ public class SynchronizedQueueTest<T> extends AbstractQueueTest<T> {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue