BAEL-17420 Slice 16 | The top 100 articles should have their own package in the module (#7747)

This commit is contained in:
Dhawal Kapil 2019-09-13 16:08:57 +05:30 committed by Josh Cummings
parent c5675b4a31
commit 2c19d277d4
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class ListInitializationUnitTest {
}
@Test
public void givenArrayAsList_whenCreated_thenShareReference() {
public void givenArraysAsList_whenCreated_thenShareReference() {
String[] array = { "foo", "bar" };
List<String> list = Arrays.asList(array);
array[0] = "baz";

View File

@ -1,4 +1,4 @@
package com.baeldung.urlconnection;
package com.baeldung.jsonposturlconnection;
import java.io.BufferedReader;
import java.io.IOException;