FallbackAuthorityFactory changes for revisions 26249:26250

Changes in this commit have been reverted: we do not provide a getProxy() method.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r26249:26250 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/factory/FallbackAuthorityFactory.java
Revision 26249Revision 26250
 */
private void ensureFallback() throws FactoryException {
    if (fallback == null) {
        fallback = FallbackAuthorityFactory.this.getIdentifiedObjectFinder(proxy.getType());
    }
    fallback.setFullScanAllowed(isFullScanAllowed());
}
 */
private void ensureFallback() throws FactoryException {
    if (fallback == null) {
        fallback = FallbackAuthorityFactory.this.getIdentifiedObjectFinder(getProxy().getType());
    }
    fallback.setFullScanAllowed(isFullScanAllowed());
}