fixed warnings

This commit is contained in:
Ziver Koc 2010-08-14 15:47:42 +00:00
parent 915007b3c4
commit 8d17765deb
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ public class Torrent {
created_by = (String)dataMap.get("created by");
main_tracker = (String)dataMap.get("announce");
tracker_list = (ArrayList<String>)dataMap.get("announce-list");
info_hash = (HashMap)dataMap.get("info");
info_hash = (HashMap<String, Object>)dataMap.get("info");
is_private = (((Integer)dataMap.get("private")) != 0);
}