Skip to content

Commit 9ab342c

Browse files
committed
Remove public modifiers from junit5 test methods.
1 parent 5196a56 commit 9ab342c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webmagic-core/src/test/java/us/codecraft/webmagic/proxy/ProxyTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
* @author [email protected] May 30, 2014
1616
*
1717
*/
18-
public class ProxyTest {
18+
class ProxyTest {
1919

2020
private static List<String[]> httpProxyList = new ArrayList<String[]>();
2121

2222
@BeforeAll
23-
public static void before() {
23+
static void before() {
2424
// String[] source = { "0.0.0.1:0", "0.0.0.2:0", "0.0.0.3:0",
2525
// "0.0.0.4:0" };
2626
String[] source = { "::0.0.0.1:0", "::0.0.0.2:0", "::0.0.0.3:0", "::0.0.0.4:0" };

0 commit comments

Comments
 (0)