minor code formating fix

This commit is contained in:
Jeremy Long
2017-08-13 07:43:34 -04:00
parent 1e269f2a2c
commit d401a7e60a

View File

@@ -82,6 +82,11 @@ public final class ConnectionFactory {
* The password for the database. * The password for the database.
*/ */
private static String password = null; private static String password = null;
/**
* Counter to ensure that calls to ensureSchemaVersion does not end up in an
* endless loop.
*/
private static int callDepth = 0;
/** /**
* Private constructor for this factory class; no instance is ever needed. * Private constructor for this factory class; no instance is ever needed.
@@ -369,12 +374,6 @@ public final class ConnectionFactory {
} }
} }
/**
* Counter to ensure that calls to ensureSchemaVersion does not end up in an
* endless loop.
*/
private static int callDepth = 0;
/** /**
* Uses the provided connection to check the specified schema version within * Uses the provided connection to check the specified schema version within
* the database. * the database.