Repository: commons-numbers Updated Branches: refs/heads/master fcccb0ecf -> 65b5d844c
Add serial version identifier. Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/65b5d844 Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/65b5d844 Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/65b5d844 Branch: refs/heads/master Commit: 65b5d844c4f1258dfac41fb595906854ca83a9be Parents: fcccb0e Author: Gilles Sadowski <gil...@harfang.homelinux.org> Authored: Mon Apr 30 14:36:49 2018 +0200 Committer: Gilles Sadowski <gil...@harfang.homelinux.org> Committed: Mon Apr 30 14:36:49 2018 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/commons/numbers/complex/Complex.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/65b5d844/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java ---------------------------------------------------------------------- diff --git a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java index 9a6d4cc..979c474 100644 --- a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java +++ b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java @@ -1360,6 +1360,9 @@ public final class Complex implements Serializable { /** See {@link #parse(String)}. */ private static class ComplexParsingException extends IllegalArgumentException { + /** Serializable version identifier. */ + private static final long serialVersionUID = 20180430L; + /** * @param msg Error message. */