From d3456e0b4d0f43746da7cfcd9101a2d0f604654e Mon Sep 17 00:00:00 2001 From: kunfei Date: Wed, 18 Sep 2019 11:55:46 +0800 Subject: [PATCH] up --- .../java/io/legado/app/lib/webdav/WebDav.kt | 29 ++----------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/app/src/main/java/io/legado/app/lib/webdav/WebDav.kt b/app/src/main/java/io/legado/app/lib/webdav/WebDav.kt index 93fc41c7d..29229bbbb 100644 --- a/app/src/main/java/io/legado/app/lib/webdav/WebDav.kt +++ b/app/src/main/java/io/legado/app/lib/webdav/WebDav.kt @@ -47,10 +47,7 @@ constructor(url: String) { get() = getUrl()?.let { url -> val request = Request.Builder().url(url) HttpAuth.auth?.let { - request.header( - "Authorization", - Credentials.basic(it.user, it.pass) - ) + request.header("Authorization", Credentials.basic(it.user, it.pass)) } try { @@ -263,8 +260,7 @@ constructor(url: String) { } companion object { - val TAG = WebDav::class.java.simpleName - val OBJECT_NOT_EXISTS_TAG = "ObjectNotFound" + // 指定返回哪些属性 private const val DIR = """\n \n @@ -273,26 +269,5 @@ constructor(url: String) { \n """ - /** - * 打印对象内的所有属性 - */ - fun printAllAttrs(className: String, o: Any): T? { - try { - val c = Class.forName(className) - val fields = c.declaredFields - for (f in fields) { - f.isAccessible = true - } - println("=============$className===============") - for (f in fields) { - val field = f.toString().substring(f.toString().lastIndexOf(".") + 1) //取出属性名称 - println(field + " --> " + f.get(o)) - } - } catch (e: Exception) { - e.printStackTrace() - } - - return null - } } } \ No newline at end of file