diff options
author | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-23 05:00:32 +0000 |
---|---|---|
committer | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-23 05:00:32 +0000 |
commit | 8e7e12d040ae2f7d1168bc927bcf4ed6075cf79a (patch) | |
tree | 0a08480985749c0ae916e4f6d183ec6257d1c365 | |
parent | cf1fd287777f9bf53b472fed29924b99e094ea87 (diff) | |
download | ATCD-8e7e12d040ae2f7d1168bc927bcf4ed6075cf79a.tar.gz |
Changed a constant in LogRecord to be static.
-rw-r--r-- | java/examples/Logger/simple-server/LogRecord.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/examples/Logger/simple-server/LogRecord.java b/java/examples/Logger/simple-server/LogRecord.java index 4b7e7e87003..e29ed6e32b9 100644 --- a/java/examples/Logger/simple-server/LogRecord.java +++ b/java/examples/Logger/simple-server/LogRecord.java @@ -15,7 +15,7 @@ import java.io.IOException; public class LogRecord { - final public int MAXLOGMSGLEN = 4 * 1024; + final public static int MAXLOGMSGLEN = 4 * 1024; private int type_; private int length_; |