You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by dj...@apache.org on 2015/04/14 08:40:18 UTC

svn commit: r1673370 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java

Author: djones
Date: Tue Apr 14 06:40:18 2015
New Revision: 1673370

URL: http://svn.apache.org/r1673370
Log:
Explicit static imports.

Modified:
    commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java?rev=1673370&r1=1673369&r2=1673370&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/CharSetTest.java Tue Apr 14 06:40:18 2015
@@ -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;