BAEL-3929: modified java.

This commit is contained in:
Tyrell Flurry 2020-04-09 16:52:54 -04:00
parent 7a9ec696af
commit 2231a044ea
1 changed files with 5 additions and 7 deletions

View File

@ -6,15 +6,13 @@ import java.util.Map;
import org.slf4j.LoggerFactory;
public class Main {
public static void main(String[] args) {
Map<String, String> teamMap = new HashMap<>();
teamMap.put("Dallas", "Cowboys");
teamMap.put("Green Bay", "Packers");
teamMap.put("Washington", "Redskins");
Map<String, String> map = new HashMap<>();
map.put("Dallas", "Texas");
map.put("Green Bay", "Wisconsin");
map.put("Seattle", "Washington");
LoggerFactory.getLogger(Main.class)
.info("Team Map: {}", teamMap);
.info("Map: {}", map);
}
}