Explicit static imports.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1673370 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Duncan Jones 2015-04-14 06:40:18 +00:00
parent 2ed96f00f7
commit 3720683699
1 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,10 @@
*/
package org.apache.commons.lang3;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.Modifier;