improve creation of git repositories

This commit is contained in:
Sebastian Sdorra
2010-09-28 19:02:07 +02:00
parent 12fc507d7b
commit 9bca5a5f07
3 changed files with 50 additions and 1 deletions

View File

@@ -142,6 +142,21 @@ public class Util
return formatDate(date, null);
}
/**
* Method description
*
*
* @param value
*
* @return
*/
public static String nonNull(String value)
{
return (value != null)
? value
: "";
}
/**
* Method description
*