From 2ac7df338eaf403074fb976506acb312bca9d2d1 Mon Sep 17 00:00:00 2001 From: Omertron Date: Thu, 7 Oct 2010 11:16:41 +0000 Subject: [PATCH] Fixed country parsing --- .../src/com/moviejukebox/themoviedb/tools/DOMParser.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/themoviedbapi/src/com/moviejukebox/themoviedb/tools/DOMParser.java b/themoviedbapi/src/com/moviejukebox/themoviedb/tools/DOMParser.java index f944c6e48..33ac6b61d 100644 --- a/themoviedbapi/src/com/moviejukebox/themoviedb/tools/DOMParser.java +++ b/themoviedbapi/src/com/moviejukebox/themoviedb/tools/DOMParser.java @@ -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); } }