summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/podfetcher/syndication/namespace/atom/NSAtom.java')
-rw-r--r--src/de/podfetcher/syndication/namespace/atom/NSAtom.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
index 826954beb..5597f787f 100644
--- a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
+++ b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
@@ -80,14 +80,12 @@ public class NSAtom extends Namespace {
new FeedMedia(state.getCurrentItem(), download_url,
size, type));
} else if (rel.equals(LINK_REL_PAYMENT)) {
- Log.d(TAG, "Found payment item link");
state.getCurrentItem().setPaymentLink(href);
}
} else if (parent.getName().matches(isFeed)) {
if (rel == null || rel.equals(LINK_REL_ALTERNATE)) {
state.getFeed().setLink(href);
} else if (rel.equals(LINK_REL_PAYMENT)) {
- Log.d(TAG, "Found payment link");
state.getFeed().setPaymentLink(href);
}
}