Author: saces
Date: 2008-08-03 11:01:11 +0000 (Sun, 03 Aug 2008)
New Revision: 21591
Modified:
trunk/freenet/src/freenet/node/LowLevelGetException.java
Log:
make getMessage public
Modified: trunk/freenet/src/freenet/node/LowLevelGetException.java
===================================================================
--- trunk/freenet/src/freenet/node/LowLevelGetException.java 2008-08-03
10:19:56 UTC (rev 21590)
+++ trunk/freenet/src/freenet/node/LowLevelGetException.java 2008-08-03
11:01:11 UTC (rev 21591)
@@ -32,7 +32,7 @@
/** Ran into a failure table */
public static final int RECENTLY_FAILED = 10;
- static final String getMessage(int reason) {
+ public static final String getMessage(int reason) {
switch(reason) {
case DECODE_FAILED:
return "Decode of data failed, probably was bogus at
source";