Search in sources :

Example 1 with Ignore

use of android.arch.persistence.room.Ignore in project NewPipe by TeamNewPipe.

the class SubscriptionEntity method toChannelInfoItem.

@Ignore
public ChannelInfoItem toChannelInfoItem() {
    ChannelInfoItem item = new ChannelInfoItem(getServiceId(), getUrl(), getName());
    item.setThumbnailUrl(getAvatarUrl());
    item.setSubscriberCount(getSubscriberCount());
    item.setDescription(getDescription());
    return item;
}
Also used : ChannelInfoItem(org.schabi.newpipe.extractor.channel.ChannelInfoItem) Ignore(android.arch.persistence.room.Ignore)

Aggregations

Ignore (android.arch.persistence.room.Ignore)1 ChannelInfoItem (org.schabi.newpipe.extractor.channel.ChannelInfoItem)1