Consistent declaration of private static final logger variables
Issue: SPR-11905
This commit is contained in:
@@ -63,7 +63,7 @@ public class EmbeddedDatabaseFactory {
|
||||
*/
|
||||
public static final String DEFAULT_DATABASE_NAME = "testdb";
|
||||
|
||||
private static Log logger = LogFactory.getLog(EmbeddedDatabaseFactory.class);
|
||||
private static final Log logger = LogFactory.getLog(EmbeddedDatabaseFactory.class);
|
||||
|
||||
private String databaseName = DEFAULT_DATABASE_NAME;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user