Organize imports, don't use wildcard imports

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1591831 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-05-02 08:56:42 +00:00
parent 548e5c42f5
commit 358f139d13
1 changed files with 8 additions and 2 deletions

View File

@ -17,13 +17,19 @@
package org.apache.commons.lang3.time;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import java.util.Calendar;
import java.util.TimeZone;
import org.junit.Test;
/**
* TestCase for DurationFormatUtils.
*