AbstractMathTransform changes for revisions 6605:6606

This method has been removed.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r6605:6606 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/transform/AbstractMathTransform.java
Revision 6605Revision 6606
/*
 * Geotools 2 - OpenSource mapping toolkit
 * (C) 2003, Geotools Project Managment Committee (PMC)
 * (C) 2001, Institut de Recherche pour le Développement
 *
 *    This library is free software; you can redistribute it and/or
/*
 * Geotools 2 - OpenSource mapping toolkit
 * (C) 2003, 2004 Geotools Project Managment Committee (PMC)
 * (C) 2001, Institut de Recherche pour le Développement
 *
 *    This library is free software; you can redistribute it and/or
}

/**
 * Makes sure that the specified longitude stay within ±π radians. This method
 * is typically invoked after geographic coordinates are transformed. This method may add
 * or substract some amount of 2&pi; radians to <var>x</var>.
 *
}

/**
 * Ensures that the specified longitude stay within &plusmn;&pi; radians. This method
 * is typically invoked after geographic coordinates are transformed. This method may add
 * or substract some amount of 2&pi; radians to <var>x</var>.
 *
 * @return The longitude in the range &plusmn;&pi; radians.
 */
protected static double rollLongitude(final double x) {
    return x + (2*Math.PI)*Math.floor(x / (2*Math.PI) + 0.5);
}

/**
 * @return The longitude in the range &plusmn;&pi; radians.
 */
protected static double rollLongitude(final double x) {
    return x - (2*Math.PI)*Math.floor(x / (2*Math.PI) + 0.5);
}

/**