[izpack-changes] r1551 - izpack-src/trunk/src/lib/com/izforge/izpack/util
noreply at berlios.de
noreply at berlios.de
Sun Aug 27 18:49:23 CEST 2006
Author: eppelman
Date: 2006-08-27 18:49:20 +0200 (Sun, 27 Aug 2006)
New Revision: 1551
Modified:
izpack-src/trunk/src/lib/com/izforge/izpack/util/Debug.java
Log:
small javadoc maintenance
Modified: izpack-src/trunk/src/lib/com/izforge/izpack/util/Debug.java
===================================================================
--- izpack-src/trunk/src/lib/com/izforge/izpack/util/Debug.java 2006-08-27 16:47:05 UTC (rev 1550)
+++ izpack-src/trunk/src/lib/com/izforge/izpack/util/Debug.java 2006-08-27 16:49:20 UTC (rev 1551)
@@ -254,7 +254,7 @@
* -DLOG=true -jar izpack-installer.jar
*
* @param o The Object to log
- * @param withDate if the given MASK is greater than 0, Log with Date/Timestamp
+ * @param withWhatFormat if the given MASK is greater than 0, Log with Date/Timestamp
*/
public static void log(Object o, int withWhatFormat)
{
@@ -312,19 +312,19 @@
/**
* Indicates that to log with Date.
*
- * @param withWhat The whished Format
+ * @param withWhatFormat The whished Format
* @return true if to log with Date
*/
private static boolean logWithDate(int withWhatFormat)
{
- // TODO Auto-generated method stub
+
return (withWhatFormat & LOG_WITH_DATE) == LOG_WITH_DATE;
}
/**
* Indicates that to log with Timestamp.
*
- * @param withWhat The whished Format
+ * @param withWhatFormat The whished Format
* @return true if to log with Timestamp
*/
private static boolean logWithTimeStamp(int withWhatFormat)
More information about the izpack-changes
mailing list