Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 40  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. FindBugs RV_ABSOLUTE_VALUE_OF_RANDOM_INT warning
  2. public static String generateUUID(int base){
  3.  
  4.     return String.valueOf(getCurrentTimeInNanos((long)base))  +
  5.  
  6.                      String.valueOf(Math.abs(random.nextInt()));
  7.  }
  8.        
  9. assertTrue( Math.abs(Integer.MIN_VALUE) < 0 );