diff --git a/SWADroid/src/es/ugr/swad/swadroid/modules/tests/TestsDownload.java b/SWADroid/src/es/ugr/swad/swadroid/modules/tests/TestsDownload.java deleted file mode 100644 index 8aec4a98..00000000 --- a/SWADroid/src/es/ugr/swad/swadroid/modules/tests/TestsDownload.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * This file is part of SWADroid. - * - * Copyright (C) 2010 Juan Miguel Boyero Corral - * - * SWADroid 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. - * - * SWADroid 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 SWADroid. If not, see . - */ -package es.ugr.swad.swadroid.modules.tests; - -import java.io.IOException; -import java.security.NoSuchAlgorithmException; - -import org.ksoap2.SoapFault; -import org.xmlpull.v1.XmlPullParserException; - -import es.ugr.swad.swadroid.modules.Module; - -/** - * Tests module for download and update questions - * @author Juan Miguel Boyero Corral - */ -public class TestsDownload extends Module { - - /* (non-Javadoc) - * @see es.ugr.swad.swadroid.modules.Module#requestService() - */ - @Override - protected void requestService() throws NoSuchAlgorithmException, - IOException, XmlPullParserException, SoapFault, - IllegalAccessException, InstantiationException { - // TODO Auto-generated method stub - - } - - /* (non-Javadoc) - * @see es.ugr.swad.swadroid.modules.Module#connect() - */ - @Override - protected void connect() { - // TODO Auto-generated method stub - - } - - /* (non-Javadoc) - * @see es.ugr.swad.swadroid.modules.Module#postConnect() - */ - @Override - protected void postConnect() { - // TODO Auto-generated method stub - - } - -}