comment out unescapeHTML() until we need it

This commit is contained in:
zzz
2012-01-26 15:03:54 +00:00
parent fc18b44a56
commit b3f3a60ca6
3 changed files with 10 additions and 1 deletions

View File

@ -1490,6 +1490,7 @@ public class DataHelper {
* @param escaped the escaped string, may be null * @param escaped the escaped string, may be null
* @return the unescaped string, or null if null is passed in * @return the unescaped string, or null if null is passed in
*/ */
/**** unused, uncomment if you need it
public static String unescapeHTML(String escaped) { public static String unescapeHTML(String escaped) {
if (escaped == null) return null; if (escaped == null) return null;
String unescaped = escaped; String unescaped = escaped;
@ -1498,7 +1499,9 @@ public class DataHelper {
} }
return unescaped; return unescaped;
} }
****/
/** */
public static final int MAX_UNCOMPRESSED = 40*1024; public static final int MAX_UNCOMPRESSED = 40*1024;
public static final int MAX_COMPRESSION = Deflater.BEST_COMPRESSION; public static final int MAX_COMPRESSION = Deflater.BEST_COMPRESSION;
public static final int NO_COMPRESSION = Deflater.NO_COMPRESSION; public static final int NO_COMPRESSION = Deflater.NO_COMPRESSION;

View File

@ -1,3 +1,9 @@
2012-01-26 zzz
* configclients: Fix form action default
* NetDB: Increase min ff to 200
* Plugins: Fix updated count
* SusiDNS: Make UI 1-based
2012-01-24 zzz 2012-01-24 zzz
* Addresses: Fix NPE if no interfaces found http://forum.i2p/viewtopic.php?t=6365 * Addresses: Fix NPE if no interfaces found http://forum.i2p/viewtopic.php?t=6365
* i2ptunnel: Fix white-on-white buttons on hover * i2ptunnel: Fix white-on-white buttons on hover

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 8; public final static long BUILD = 9;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";