This commit propagates the package names change which was done in GeoAPI. There is no way such change could be done differently, since not renaming the packages cause a compilation error.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r24924:24925 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/geometry/DirectPosition2D.java
Revision 24924 | Revision 24925 |
---|---|
// OpenGIS dependencies import org.opengis.referencing.cs.AxisDirection; // For javadoc import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.spatialschema.geometry.DirectPosition; import org.opengis.spatialschema.geometry.MismatchedDimensionException; /** |
// OpenGIS dependencies import org.opengis.referencing.cs.AxisDirection; // For javadoc import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.geometry.DirectPosition; import org.opengis.geometry.MismatchedDimensionException; /** |
/**
* Returns always <code>this</code>, the direct position for this
* {@linkplain org.opengis.spatialschema.geometry.geometry.Position position}.
*/
public DirectPosition getPosition() {
return this; |
/**
* Returns always <code>this</code>, the direct position for this
* {@linkplain org.opengis.geometry.coordinate.Position position}.
*/
public DirectPosition getPosition() {
return this; |