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()) }