This commit has been excluded from SIS as below:
serialVersionUID
number has been computed.DirectEpsgFactory
has not been retained.
Instead, SIS uses the EPSGDataAccess
class name.Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r25939:25940 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/factory/epsg/AuthorityCodes.java
Revision 25939 | Revision 25940 |
---|---|
* @author Martin Desruisseaux */ final class AuthorityCodes extends AbstractSet implements Serializable { /** * The logger name. */ |
* @author Martin Desruisseaux
*/
final class AuthorityCodes extends AbstractSet implements Serializable {
private static final long serialVersionUID = 7105664579449680562L;
/**
* The logger name.
*/ |
* set is in use. This is required because {@link FactoryUsingSQL#finalize} closes the JDBC
* connections.
*/
private final FactoryUsingSQL factory;
/**
* The type for this code set. This is translated to the most appropriate |
* set is in use. This is required because {@link FactoryUsingSQL#finalize} closes the JDBC
* connections.
*/
private final DirectEpsgFactory factory;
/**
* The type for this code set. This is translated to the most appropriate |
public AuthorityCodes(final Connection connection,
final TableInfo table,
final Class type,
final FactoryUsingSQL factory)
{
this.factory = factory;
this.connection = connection; |
public AuthorityCodes(final Connection connection,
final TableInfo table,
final Class type,
final DirectEpsgFactory factory)
{
this.factory = factory;
this.connection = connection; |