From: <ssk...@vh...> - 2005-09-20 16:03:41
|
Author: sskracic Date: 2005-09-20 17:54:06 +0200 (Tue, 20 Sep 2005) New Revision: 883 Modified: trunk/ccm-core/src/com/arsdigita/persistence/PooledConnectionSource.java Log: Allowing package-scoped access for renameThread() method, declared static as well. Modified: trunk/ccm-core/src/com/arsdigita/persistence/PooledConnectionSource.java =================================================================== --- trunk/ccm-core/src/com/arsdigita/persistence/PooledConnectionSource.java 2005-09-19 11:58:21 UTC (rev 882) +++ trunk/ccm-core/src/com/arsdigita/persistence/PooledConnectionSource.java 2005-09-20 15:54:06 UTC (rev 883) @@ -123,7 +123,7 @@ } } - private void renameThread(Connection conn) { + static void renameThread(Connection conn) { if (s_taggingEnabled) { Thread curr = Thread.currentThread(); String tname = curr.getName(); |