fix: replace * imports with single imports:

This commit is contained in:
Daniel Garrett
2020-07-13 10:07:50 +01:00
parent 6a3a2a2fdc
commit 0e82be2587

View File

@@ -2,7 +2,9 @@ package com.baeldung.assume;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertEquals;
import static org.junit.Assume.*;
import static org.junit.Assume.assumeFalse;
import static org.junit.Assume.assumeThat;
import static org.junit.Assume.assumeTrue;
import org.junit.Test;