From a431137f45a44a7a86e6ea29a3588c8778c6bf02 Mon Sep 17 00:00:00 2001 From: zzz Date: Sun, 9 Aug 2009 14:21:47 +0000 Subject: [PATCH] comments --- core/java/src/net/i2p/data/DataHelper.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/java/src/net/i2p/data/DataHelper.java b/core/java/src/net/i2p/data/DataHelper.java index 56528a46b2..ef0b89fc24 100644 --- a/core/java/src/net/i2p/data/DataHelper.java +++ b/core/java/src/net/i2p/data/DataHelper.java @@ -212,6 +212,11 @@ public class DataHelper { /** * A more efficient Properties.load * + * Some of the other differences: + * - This does not process or drop backslashes + * - '#' or ';' starts a comment line, but '!' does not + * - Leading whitespace is not trimmed + * - '=' is the only key-termination character (not ':' or whitespace) */ public static void loadProps(Properties props, File file) throws IOException { loadProps(props, file, false);