Author: j16sdiz
Date: 2008-04-14 02:42:07 +0000 (Mon, 14 Apr 2008)
New Revision: 19289
Modified:
trunk/freenet/src/freenet/support/Logger.java
Log:
fields should be private
Modified: trunk/freenet/src/freenet/support/Logger.java
===================================================================
--- trunk/freenet/src/freenet/support/Logger.java 2008-04-14 02:41:42 UTC
(rev 19288)
+++ trunk/freenet/src/freenet/support/Logger.java 2008-04-14 02:42:07 UTC
(rev 19289)
@@ -18,12 +18,12 @@
public final static class OSThread {
- public static boolean getPIDEnabled = false;
- public static boolean getPPIDEnabled = false;
- public static boolean logToFileEnabled = false;
- public static int logToFileVerbosity = DEBUG;
- public static boolean logToStdOutEnabled = false;
- public static boolean procSelfStatEnabled = false;
+ private static boolean getPIDEnabled = false;
+ private static boolean getPPIDEnabled = false;
+ private static boolean logToFileEnabled = false;
+ private static int logToFileVerbosity = DEBUG;
+ private static boolean logToStdOutEnabled = false;
+ private static boolean procSelfStatEnabled = false;
/**
* Get the thread's process ID or return -1 if it's unavailable
for some reason