Skip to content

Commit 3bcf4f6

Browse files
committed
debug remove
1 parent 1c4b22a commit 3bcf4f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/com/neocoretechs/relatrix/key/DBKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
public final class DBKey implements Comparable, Serializable {
1717
private static final long serialVersionUID = -7511519913473997228L;
18-
private static boolean DEBUG = true;
18+
private static boolean DEBUG = false;
1919
UUID instanceIndex = null;
2020

2121
public DBKey() {}

src/com/neocoretechs/relatrix/key/IndexInstanceTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
*/
2222
public final class IndexInstanceTable implements IndexInstanceTableInterface {
23-
public static boolean DEBUG = true;
23+
public static boolean DEBUG = false;
2424
LinkedHashSet<Class> classCommits = new LinkedHashSet<Class>();
2525
String transactionId = null;
2626
private Object mutex = new Object();

src/com/neocoretechs/relatrix/key/IndexResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*/
1717
public class IndexResolver {
18-
public static boolean DEBUG = true;
18+
public static boolean DEBUG = false;
1919
static IndexInstanceTableInterface instanceTable = null;
2020
static boolean local = true;
2121
static RelatrixClientInterface remoteIndexInstanceTable;

src/com/neocoretechs/relatrix/key/RemoteIndexInstanceTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
*/
2525
public final class RemoteIndexInstanceTable implements IndexInstanceTableInterface {
26-
public static boolean DEBUG = true;
26+
public static boolean DEBUG = false;
2727
LinkedHashSet<Class> classCommits = new LinkedHashSet<Class>();
2828
private RelatrixClientInterface rc = null;
2929
private RelatrixClientTransactionInterface rcx = null;

0 commit comments

Comments
 (0)