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;
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue