From c970be71a30db2e01f6520152a86f983580c1005 Mon Sep 17 00:00:00 2001 From: Bnyro <82752168+Bnyro@users.noreply.github.com> Date: Tue, 17 May 2022 14:46:33 +0200 Subject: [PATCH] Delete FeedItem.java --- .../com/github/libretube/obj/FeedItem.java | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 app/src/main/java/com/github/libretube/obj/FeedItem.java diff --git a/app/src/main/java/com/github/libretube/obj/FeedItem.java b/app/src/main/java/com/github/libretube/obj/FeedItem.java deleted file mode 100644 index 3acf811f6..000000000 --- a/app/src/main/java/com/github/libretube/obj/FeedItem.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.github.libretube.obj; - -public class FeedItem { - public String url, title, thumbnail, uploaderUrl, uploaderName, uploaderAvatar; - - public long views, duration, uploaded; - - public boolean uploaderVerified; - - public FeedItem(String url, String title, String thumbnail, String uploaderUrl, String uploaderName, - String uploaderAvatar, long views, long duration, long uploaded, boolean uploaderVerified) { - this.url = url; - this.title = title; - this.thumbnail = thumbnail; - this.uploaderUrl = uploaderUrl; - this.uploaderName = uploaderName; - this.uploaderAvatar = uploaderAvatar; - this.views = views; - this.duration = duration; - this.uploaded = uploaded; - this.uploaderVerified = uploaderVerified; - } -}