From 0ec07410cb0e817930bb1535fa05d05b9b1c32de Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Mon, 16 May 2022 23:07:02 +0200 Subject: [PATCH] remove unused interface Signed-off-by: Andy Scherzinger --- .../talk/models/json/generic/IGenericOCS.kt | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 app/src/main/java/com/nextcloud/talk/models/json/generic/IGenericOCS.kt diff --git a/app/src/main/java/com/nextcloud/talk/models/json/generic/IGenericOCS.kt b/app/src/main/java/com/nextcloud/talk/models/json/generic/IGenericOCS.kt deleted file mode 100644 index fc147be49..000000000 --- a/app/src/main/java/com/nextcloud/talk/models/json/generic/IGenericOCS.kt +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Nextcloud Talk application - * - * @author Andy Scherzinger - * Copyright (C) 2022 Andy Scherzinger - * - * 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. - * - * This program 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 this program. If not, see . - */ -package com.nextcloud.talk.models.json.generic - -interface IGenericOCS { - fun getGenericMeta(): GenericMeta? -}