Changeset 9804e5b
- Timestamp:
- Nov 26, 2013 1:34:08 AM (7 years ago)
- Branches:
- master
- Children:
- 85aa2fb
- Parents:
- 2f33186
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/java/src/org/klomp/snark/MetaInfo.java
r2f33186 r9804e5b 587 587 public synchronized byte[] getTorrentData() 588 588 { 589 Map m = new HashMap();589 Map<String, Object> m = new HashMap<String, Object>(); 590 590 if (announce != null) 591 591 m.put("announce", announce); 592 592 if (announce_list != null) 593 593 m.put("announce-list", announce_list); 594 Map info = createInfoMap();594 Map<String, BEValue> info = createInfoMap(); 595 595 m.put("info", info); 596 596 // don't save this locally, we should only do this once
Note: See TracChangeset
for help on using the changeset viewer.