BAEL-3929: modified java.
This commit is contained in:
parent
7a9ec696af
commit
2231a044ea
|
@ -6,15 +6,13 @@ import java.util.Map;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Map<String, String> teamMap = new HashMap<>();
|
Map<String, String> map = new HashMap<>();
|
||||||
teamMap.put("Dallas", "Cowboys");
|
map.put("Dallas", "Texas");
|
||||||
teamMap.put("Green Bay", "Packers");
|
map.put("Green Bay", "Wisconsin");
|
||||||
teamMap.put("Washington", "Redskins");
|
map.put("Seattle", "Washington");
|
||||||
|
|
||||||
LoggerFactory.getLogger(Main.class)
|
LoggerFactory.getLogger(Main.class)
|
||||||
.info("Team Map: {}", teamMap);
|
.info("Map: {}", map);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue