Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public static BigDecimal copyOf(BigDecimal value)
  2. {
  3. if (value.getClass() == BigDecimal.class)
  4. return value;
  5. return new BigDecimal(value.unscaledValue(), value.scale());
  6. }
Add Comment
Please, Sign In to add comment