UnicastConnectionManager.java (clients): Now package-private.

* gnu/java/rmi/server/UnicastConnectionManager.java (clients): Now
	package-private.
	(connections): Likewise.
	(scavenger): Likewise.
	* gnu/java/rmi/server/ConnectionRunnerPool.java (freelist): Now
	package-private.
	* gnu/java/rmi/server/UnicastRemoteCall.java (vec): Now
	package-private.
	(ptr): Likewise.
	* gnu/classpath/ServiceFactory.java (log): Now package-private.

From-SVN: r90206
This commit is contained in:
Tom Tromey
2004-11-06 23:38:51 +00:00
committed by Tom Tromey
parent ab6036c8fb
commit 9ec0f3c8f5
5 changed files with 26 additions and 8 deletions
+2 -1
View File
@@ -521,6 +521,7 @@ public final class ServiceFactory
}
// Package-private to avoid a trampoline.
/**
* Passes a log message to the <code>java.util.logging</code>
* framework. This call returns very quickly if no log message will
@@ -542,7 +543,7 @@ public final class ServiceFactory
* <code>null</code> if the log message is not associated with a
* Throwable.
*/
private static void log(Level level, String msg, Object param, Throwable t)
static void log(Level level, String msg, Object param, Throwable t)
{
LogRecord rec;