diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 23:38:51 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 23:38:51 +0000 |
| commit | 9c4afdfb1826db4452449205c05080386597ecb0 (patch) | |
| tree | 212e276d4ff35aca891fa4b45b72f395dae6b550 /libjava/gnu/classpath/ServiceFactory.java | |
| parent | 6cd9226fb493e6c9ef831feb1b14bde5f1f4fb72 (diff) | |
| download | ppe42-gcc-9c4afdfb1826db4452449205c05080386597ecb0.tar.gz ppe42-gcc-9c4afdfb1826db4452449205c05080386597ecb0.zip | |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90206 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/classpath/ServiceFactory.java')
| -rw-r--r-- | libjava/gnu/classpath/ServiceFactory.java | 3 |
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; |

