Spurious "transient" keyword.
diff --git a/commons-geometry-hull/src/main/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHull2D.java b/commons-geometry-hull/src/main/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHull2D.java
index da716a3..0d00176 100644
--- a/commons-geometry-hull/src/main/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHull2D.java
+++ b/commons-geometry-hull/src/main/java/org/apache/commons/geometry/euclidean/twod/hull/ConvexHull2D.java
@@ -42,7 +42,7 @@
      * Line segments of the hull.
      * The array is not serialized and will be created from the vertices on first access.
      */
-    private transient Segment[] lineSegments;
+    private Segment[] lineSegments;
 
     /**
      * Simple constructor.