Cleaning.

This commit is contained in:
Christian P. MOMON 2010-08-15 15:23:57 +02:00
parent 1a0d0dacdf
commit 1185843432

7
src/fr/devinsy/util/DateHelper.java Executable file → Normal file
View file

@ -71,7 +71,7 @@ public class DateHelper
/**
*
*/
public String americanFormat (Calendar time)
static public String americanFormat (Calendar time)
{
String result;
@ -92,7 +92,7 @@ public class DateHelper
/**
*
*/
public String rawFormat (Calendar time)
static public String rawFormat (Calendar time)
{
String result;
@ -113,7 +113,7 @@ public class DateHelper
/**
*
*/
public boolean isValidDate (String date)
static public boolean isValidDate (String date)
{
boolean result;
@ -133,6 +133,7 @@ public class DateHelper
return (result);
}
/**
*
*/