Skip to content

Commit

Permalink
deprecate ERXRandomGUID
Browse files Browse the repository at this point in the history
since Java 1.5 there is the class UUID which should be used instead
  • Loading branch information
darkv committed Mar 27, 2015
1 parent 431ab3a commit 4af3979
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Random;
import java.util.UUID;

import org.apache.log4j.Logger;

Expand Down Expand Up @@ -119,7 +120,9 @@
*
* @version 1.2.1 11/05/02
* @author Marc A. Mnich
* @deprecated use {@link UUID} instead
*/
@Deprecated
public class ERXRandomGUID {
private static Logger log = Logger.getLogger(ERXRandomGUID.class);
public String valueBeforeMD5 = "";
Expand Down

0 comments on commit 4af3979

Please sign in to comment.