Skip to content

Commit 13af48e

Browse files
committed
Added serialVersionUID to Money
1 parent bad8d1d commit 13af48e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/org/javamoney/moneta/Money.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,18 @@
3838
* As required by {@link MonetaryAmount} this class is final, thread-safe,
3939
* immutable and serializable.
4040
*
41-
* @version 0.6
41+
* @version 0.6.1
4242
* @author Anatole Tresch
4343
* @author Werner Keil
4444
*/
4545
public final class Money implements MonetaryAmount, Comparable<MonetaryAmount>,
4646
Serializable {
4747

48+
/**
49+
*
50+
*/
51+
private static final long serialVersionUID = -7565813772046251748L;
52+
4853
public static final MathContext DEFAULT_MATH_CONTEXT = initDefaultMathContext();
4954

5055
private static final int[] DENOM_ARRAY = new int[] { 1, 10, 100, 1000,

0 commit comments

Comments
 (0)