Revision 47346 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.jts/src/main/java/org/gvsig/fmap/geom/jts/primitive/point/Point3D.java

View differences:

Point3D.java
104 104
    /* (non-Javadoc)
105 105
     * @see org.gvsig.fmap.geom.Geometry#cloneGeometry()
106 106
     */
107
    @Override
107 108
    public Point cloneGeometry() {
108
        return new Point3D(this.getProjection(), (Coordinate)this.coordinate.clone());
109
        Point3D clone = new Point3D(this.getProjection(), (Coordinate)this.coordinate.clone());
110
        clone.setProjection(this.getProjection());
111
        return clone;
109 112
    }
110 113

  
111 114
    /* (non-Javadoc)

Also available in: Unified diff