summaryrefslogtreecommitdiffstats
path: root/app/src/main/java
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2020-05-07 16:10:09 +0200
committerThomas <tschneider.ac@gmail.com>2020-05-07 16:10:09 +0200
commit47ecdd8e0845c19a3a0661c09b75967932b1a73c (patch)
tree2647163b5a54a55c3518a0f058c10016a0a5c986 /app/src/main/java
parent3df4f6ce13017028360bf210cd8dcd93a1a13a1a (diff)
copy release notes
Diffstat (limited to 'app/src/main/java')
-rw-r--r--app/src/main/java/app/fedilab/android/client/Entities/BlockedDomains.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/app/src/main/java/app/fedilab/android/client/Entities/BlockedDomains.java b/app/src/main/java/app/fedilab/android/client/Entities/BlockedDomains.java
deleted file mode 100644
index e6c1a4c01..000000000
--- a/app/src/main/java/app/fedilab/android/client/Entities/BlockedDomains.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright 2019 Thomas Schneider
- *
- * This file is a part of Fedilab
- *
- * This program is free software; you can redistribute it and/or modify it under the terms of the
- * GNU General Public License as published by the Free Software Foundation; either version 3 of the
- * License, or (at your option) any later version.
- *
- * Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
- * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
- * Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with Fedilab; if not,
- * see <http://www.gnu.org/licenses>. */
-package app.fedilab.android.client.Entities;
-
-public class BlockedDomains {
-
- private int id;
- private String domain;
-
- public String getDomain() {
- return domain;
- }
-
- public void setDomain(String domain) {
- this.domain = domain;
- }
-
- public int getId() {
- return id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-}