From c24d5c8d61d7f593baa271b22dc9016dfd718002 Mon Sep 17 00:00:00 2001 From: yangyakun Date: Wed, 27 Mar 2024 20:32:32 +0800 Subject: [PATCH] =?UTF-8?q?[6.3.0]=20[smallmap=20=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E6=97=A5=E5=BF=97]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mogo/och/taxi/passenger/ui/simplemap/PaintDegree.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OCH/taxi/pcommon/src/main/java/com/mogo/och/taxi/passenger/ui/simplemap/PaintDegree.kt b/OCH/taxi/pcommon/src/main/java/com/mogo/och/taxi/passenger/ui/simplemap/PaintDegree.kt index bbe940f2d5..ca0a7af323 100644 --- a/OCH/taxi/pcommon/src/main/java/com/mogo/och/taxi/passenger/ui/simplemap/PaintDegree.kt +++ b/OCH/taxi/pcommon/src/main/java/com/mogo/och/taxi/passenger/ui/simplemap/PaintDegree.kt @@ -15,7 +15,7 @@ data class PaintDegree(var paint: Paint,var path:Path){ sPool = this sPoolSize++ } - CallerLogger.d("PaintDegree","缓存对象个数${sPoolSize}个") +// CallerLogger.d("PaintDegree","缓存对象个数${sPoolSize}个") } } @@ -36,10 +36,10 @@ data class PaintDegree(var paint: Paint,var path:Path){ sPool = m.next m.next = null sPoolSize-- - CallerLogger.d("PaintDegree","取出一个对象个数${sPoolSize}个") +// CallerLogger.d("PaintDegree","取出一个对象个数${sPoolSize}个") return m } - CallerLogger.d("PaintDegree","创建一个对象 ${sPoolSize}个") +// CallerLogger.d("PaintDegree","创建一个对象 ${sPoolSize}个") return PaintDegree(paint?:Paint(),path?:Path()) }