Changes in this commit seem to be the result of some "auto reformat" tool execution. The Java - GeoAPI - GeoTools import ordering is altered, imports used only in Javadoc are lost and the encoding of non-ASCII characters is broken. This commit has been reverted, except for the removal of really unused imports which are kept removed.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r10795:10796 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/cs/DefaultCartesianCS.java
Revision 10795 | Revision 10796 |
---|---|
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, Geotools Project Managment Committee (PMC)
* (C) 2004, Institut de Recherche pour le Développement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, Geotools Project Managment Committee (PMC)
* (C) 2004, Institut de Recherche pour le D�veloppement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
// J2SE dependencies and extensions import java.util.Map; import javax.units.Unit; import javax.units.Converter; import javax.units.ConversionException; // OpenGIS dependencies import org.opengis.referencing.cs.CoordinateSystem; import org.opengis.referencing.cs.CoordinateSystemAxis; import org.opengis.spatialschema.geometry.MismatchedDimensionException; // Geotools dependencies import org.geotools.measure.Measure; /** * A 1-, 2-, or 3-dimensional coordinate system. Gives the position of points relative to * orthogonal straight axes in the 2- and 3-dimensional cases. In the 1-dimensional case, |
// J2SE dependencies and extensions import java.util.Map; import javax.units.Converter; import javax.units.Unit; import org.geotools.measure.Measure; import org.opengis.referencing.cs.CoordinateSystem; import org.opengis.referencing.cs.CoordinateSystemAxis; import org.opengis.spatialschema.geometry.MismatchedDimensionException; /** * A 1-, 2-, or 3-dimensional coordinate system. Gives the position of points relative to * orthogonal straight axes in the 2- and 3-dimensional cases. In the 1-dimensional case, |