Fixed country parsing

This commit is contained in:
Omertron
2010-10-07 11:16:41 +00:00
parent 47de11b73b
commit 2ac7df338e
@@ -148,10 +148,6 @@ public class DOMParser {
country.setCode(subElement.getAttribute("code"));
country.setUrl(subElement.getAttribute("url"));
System.out.println("Name: " + country.getName());
System.out.println("Code: " + country.getCode());
System.out.println("Url : " + country.getUrl());
movie.addProductionCountry(country);
}
}