fix: replace * imports with single imports:

This commit is contained in:
Daniel Garrett 2020-07-13 10:07:50 +01:00
parent ecff38abf6
commit 1145918e22
1 changed files with 3 additions and 1 deletions

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;