summaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/ServiceFactory.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-11-06 23:38:51 +0000
committerTom Tromey <tromey@gcc.gnu.org>2004-11-06 23:38:51 +0000
commit9ec0f3c8f52b3b940a038d8659c39c5f5e4a55f3 (patch)
tree212e276d4ff35aca891fa4b45b72f395dae6b550 /libjava/gnu/classpath/ServiceFactory.java
parentab6036c8fb201ae9e50c0fc442606feea30988fe (diff)
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
Diffstat (limited to 'libjava/gnu/classpath/ServiceFactory.java')
-rw-r--r--libjava/gnu/classpath/ServiceFactory.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/libjava/gnu/classpath/ServiceFactory.java b/libjava/gnu/classpath/ServiceFactory.java
index 5d1493414d0..e2faef9e39e 100644
--- a/libjava/gnu/classpath/ServiceFactory.java
+++ b/libjava/gnu/classpath/ServiceFactory.java
@@ -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;