alter parts to kotlin

better error handling on register request
This commit is contained in:
2020-01-31 10:01:09 +01:00
parent 02dff914ca
commit 22a9a5b612
6 changed files with 206 additions and 218 deletions

View File

@ -34,5 +34,5 @@ abstract class GetRequest : HttpHandler {
* @param params received get params from com.wasteinformationserver.website
* @return json reply to com.wasteinformationserver.website
*/
abstract fun myrequest(params: HashMap<String, String>?): String
abstract fun myrequest(params: HashMap<String, String>): String
}